mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
0eb5d5ab3e
This adds a regulator driver for the TI bq24022 Single-Chip Li-Ion Charger with its nCE and ISET2 pins connected to GPIOs. Signed-off-by: Philipp Zabel <philipp.zabel@gmail.com> Signed-off-by: Liam Girdwood <lg@opensource.wolfsonmicro.com>
13 lines
269 B
Makefile
13 lines
269 B
Makefile
#
|
|
# Makefile for regulator drivers.
|
|
#
|
|
|
|
|
|
obj-$(CONFIG_REGULATOR) += core.o
|
|
obj-$(CONFIG_REGULATOR_FIXED_VOLTAGE) += fixed.o
|
|
obj-$(CONFIG_REGULATOR_VIRTUAL_CONSUMER) += virtual.o
|
|
|
|
obj-$(CONFIG_REGULATOR_BQ24022) += bq24022.o
|
|
|
|
ccflags-$(CONFIG_REGULATOR_DEBUG) += -DDEBUG
|