diff mbox series

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

Message ID 20240515234839.26898-2-andre.przywara@arm.com
State New
Delegated to: Andre Przywara
Headers show
Series power: pmic: sunxi: consolidate AXP SPL drivers | expand

Commit Message

Andre Przywara May 15, 2024, 11:48 p.m. UTC
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@arm.com>
---
 drivers/power/Makefile | 2 ++
 1 file changed, 2 insertions(+)
diff mbox series

Patch

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