diff options
author | Simon Glass <sjg@chromium.org> | 2012-04-02 13:18:44 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-05-15 08:31:37 +0200 |
commit | 1aa7e23e2ba41c94d61bcd9199afb23817400f3c (patch) | |
tree | 9f9a363dd5ac36115422024215e0b35ddf273547 /drivers/power/Makefile | |
parent | a35925b8c10c99a7020bfcda74c8a6c72ed90cf5 (diff) | |
download | u-boot-imx-1aa7e23e2ba41c94d61bcd9199afb23817400f3c.zip u-boot-imx-1aa7e23e2ba41c94d61bcd9199afb23817400f3c.tar.gz u-boot-imx-1aa7e23e2ba41c94d61bcd9199afb23817400f3c.tar.bz2 |
i2c: Add TPS6586X driver
This power management chip supports battery charging and a large number
of power supplies. This initial driver only provides the ability to adjust
the two synchronous buck converters SM0 and SM1 in a stepwise manner.
Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Warren <twarren@nvidia.com>
Diffstat (limited to 'drivers/power/Makefile')
-rw-r--r-- | drivers/power/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/power/Makefile b/drivers/power/Makefile index f24b93c..6bf388c 100644 --- a/drivers/power/Makefile +++ b/drivers/power/Makefile @@ -26,6 +26,7 @@ include $(TOPDIR)/config.mk LIB := $(obj)libpower.o COBJS-$(CONFIG_FTPMU010_POWER) += ftpmu010.o +COBJS-$(CONFIG_TPS6586X_POWER) += tps6586x.o COBJS-$(CONFIG_TWL4030_POWER) += twl4030.o COBJS-$(CONFIG_TWL6030_POWER) += twl6030.o COBJS-$(CONFIG_TWL6035_POWER) += twl6035.o |