[PATCH 1/6] power: pmic: sunxi: only build AXP drivers for SPL

Andre Przywara andre.przywara at arm.com
Thu May 16 01:48:34 CEST 2024


The axp<xxx>.c drivers are only used for the SPL, for U-Boot proper we
have a separate, DM compliant driver.
Mask the build instructions with CONFIG_SPL_BUILD, to avoid them being
build for U-Boot proper as well.

Signed-off-by: Andre Przywara <andre.przywara at arm.com>
---
 drivers/power/Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/power/Makefile b/drivers/power/Makefile
index 41ebb494fff..9d1f4c65262 100644
--- a/drivers/power/Makefile
+++ b/drivers/power/Makefile
@@ -8,6 +8,7 @@ obj-$(CONFIG_$(SPL_TPL_)POWER_DOMAIN) += domain/
 obj-y += pmic/
 obj-y += regulator/
 
+ifdef CONFIG_SPL_BUILD
 obj-$(CONFIG_AXP152_POWER)	+= axp152.o
 obj-$(CONFIG_AXP209_POWER)	+= axp209.o
 obj-$(CONFIG_AXP221_POWER)	+= axp221.o
@@ -16,6 +17,7 @@ obj-$(CONFIG_AXP313_POWER)	+= axp313.o
 obj-$(CONFIG_AXP717_POWER)	+= axp717.o
 obj-$(CONFIG_AXP809_POWER)	+= axp809.o
 obj-$(CONFIG_AXP818_POWER)	+= axp818.o
+endif
 obj-$(CONFIG_EXYNOS_TMU)	+= exynos-tmu.o
 obj-$(CONFIG_SY8106A_POWER)	+= sy8106a.o
 obj-$(CONFIG_TPS6586X_POWER)	+= tps6586x.o
-- 
2.35.8



More information about the U-Boot mailing list