diff options
author | Tom Rini <trini@ti.com> | 2013-08-30 20:28:41 (GMT) |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-09-20 15:01:26 (GMT) |
commit | fd070d811d47d122b7a08cc417689d952c61f386 (patch) | |
tree | 573e5ca18a3de4a1d83c263a5c9e03ae91a350de | |
parent | 82cecfce3fd33e151ed8bc382ae31b19535765c5 (diff) | |
download | u-boot-fsl-qoriq-fd070d811d47d122b7a08cc417689d952c61f386.tar.xz |
spl/Makefile: Add drivers/power/pmic/libpmic to CONFIG_SPL_POWER_SUPPORT
We may need to access the PMIC code in SPL, when we have power set.
Signed-off-by: Tom Rini <trini@ti.com>
-rw-r--r-- | spl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/spl/Makefile b/spl/Makefile index 174d0a7..b366ac2 100644 --- a/spl/Makefile +++ b/spl/Makefile @@ -87,7 +87,8 @@ LIBS-$(CONFIG_SPL_SPI_FLASH_SUPPORT) += drivers/mtd/spi/libspi_flash.o LIBS-$(CONFIG_SPL_SPI_SUPPORT) += drivers/spi/libspi.o LIBS-$(CONFIG_SPL_FAT_SUPPORT) += fs/fat/libfat.o LIBS-$(CONFIG_SPL_LIBGENERIC_SUPPORT) += lib/libgeneric.o -LIBS-$(CONFIG_SPL_POWER_SUPPORT) += drivers/power/libpower.o +LIBS-$(CONFIG_SPL_POWER_SUPPORT) += drivers/power/libpower.o \ + drivers/power/pmic/libpmic.o LIBS-$(CONFIG_SPL_NAND_SUPPORT) += drivers/mtd/nand/libnand.o LIBS-$(CONFIG_SPL_ONENAND_SUPPORT) += drivers/mtd/onenand/libonenand.o LIBS-$(CONFIG_SPL_DMA_SUPPORT) += drivers/dma/libdma.o |