All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] rng: Fix build with SPL/TPL
@ 2026-08-20 15:14 Jörg Sommer
  2026-08-20 19:17 ` Tom Rini
  2026-08-28 20:29 ` Tom Rini
  0 siblings, 2 replies; 3+ messages in thread
From: Jörg Sommer @ 2026-08-20 15:14 UTC (permalink / raw)
  To: u-boot; +Cc: Marek Vasut

The inclusion of the drivers was wrapped by an “if not SPL/TPL”, which
always excluded them from SPL/TPL build.

Signed-off-by: Jörg Sommer <joerg@jo-so.de>
Fixes: 591257b05caba725eb57ceb174317ab4c7e460a7 (rng: Introduce SPL_DM_RNG)
---
 drivers/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/Makefile b/drivers/Makefile
index 4c7ba741acb..269c3db12e8 100644
--- a/drivers/Makefile
+++ b/drivers/Makefile
@@ -32,6 +32,7 @@ obj-$(CONFIG_$(PHASE_)PHY) += phy/
 obj-$(CONFIG_$(PHASE_)PINCTRL) += pinctrl/
 obj-$(CONFIG_$(PHASE_)POWER) += power/
 obj-$(CONFIG_$(PHASE_)RAM) += ram/
+obj-$(CONFIG_$(PHASE_)DM_RNG) += rng/
 obj-$(CONFIG_$(PHASE_)RTC) += rtc/
 obj-$(CONFIG_$(PHASE_)SERIAL) += serial/
 obj-$(CONFIG_$(PHASE_)SPI) += spi/
@@ -132,7 +133,6 @@ obj-$(CONFIG_W1_EEPROM) += w1-eeprom/
 obj-$(CONFIG_MACH_PIC32) += ddr/microchip/
 obj-$(CONFIG_FUZZ) += fuzz/
 obj-$(CONFIG_DM_HWSPINLOCK) += hwspinlock/
-obj-$(CONFIG_$(PHASE_)DM_RNG) += rng/
 endif
 
 obj-y += soc/
-- 
2.55.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-08-28 20:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-20 15:14 [PATCH] rng: Fix build with SPL/TPL Jörg Sommer
2026-08-20 19:17 ` Tom Rini
2026-08-28 20:29 ` Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.