From: Paul Barker Date: Mon, 14 Nov 2022 12:42:36 +0000 (+0000) Subject: bus: TI sysc driver requires DM X-Git-Tag: v2025.01-rc5-pxa1908~1198^2~7 X-Git-Url: http://git.dujemihanovic.xyz/img/%7B%7B%20%24image.RelPermalink%20%7D%7D?a=commitdiff_plain;h=e92f47c06a1492859768ffc43bb2a4e16c2f0e42;p=u-boot.git bus: TI sysc driver requires DM This driver does not build if CONFIG_DM is disabled as it uses the function `dev_get_priv`. Signed-off-by: Paul Barker --- diff --git a/drivers/bus/Kconfig b/drivers/bus/Kconfig index d742ed333b..c607d24ecf 100644 --- a/drivers/bus/Kconfig +++ b/drivers/bus/Kconfig @@ -13,7 +13,7 @@ config TI_PWMSS config TI_SYSC bool "TI sysc interconnect target module driver" - depends on ARCH_OMAP2PLUS + depends on DM && ARCH_OMAP2PLUS help Generic driver for Texas Instruments interconnect target module found on many TI SoCs.