d4b19c42ca
This patch adds battery monitoring driver for PalmTX. It can read voltage from the battery and temperature. It also monitors charging/discharging status. Signed-off-by: Marek Vasut <marek.vasut@gmail.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
23 lines
579 B
Makefile
23 lines
579 B
Makefile
power_supply-objs := power_supply_core.o
|
|
|
|
ifeq ($(CONFIG_SYSFS),y)
|
|
power_supply-objs += power_supply_sysfs.o
|
|
endif
|
|
|
|
ifeq ($(CONFIG_LEDS_TRIGGERS),y)
|
|
power_supply-objs += power_supply_leds.o
|
|
endif
|
|
|
|
ifeq ($(CONFIG_POWER_SUPPLY_DEBUG),y)
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
endif
|
|
|
|
obj-$(CONFIG_POWER_SUPPLY) += power_supply.o
|
|
|
|
obj-$(CONFIG_PDA_POWER) += pda_power.o
|
|
obj-$(CONFIG_APM_POWER) += apm_power.o
|
|
|
|
obj-$(CONFIG_BATTERY_DS2760) += ds2760_battery.o
|
|
obj-$(CONFIG_BATTERY_PMU) += pmu_battery.o
|
|
obj-$(CONFIG_BATTERY_OLPC) += olpc_battery.o
|
|
obj-$(CONFIG_BATTERY_PALMTX) += palmtx_battery.o
|