diff options
| author | Markus Schneider-Pargmann (TI) <[email protected]> | 2026-06-01 11:30:49 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-06-12 13:01:24 -0600 |
| commit | 5c3741f1355be429f8258975745f2ec701174cc8 (patch) | |
| tree | c3bd531be7ab9e598f79e3a64a07905511c22e13 | |
| parent | 1cf2fb7bce4550d0071a06b76ef381f4e016ceb7 (diff) | |
dm: core: Remove dependency on CLK
CLK is an optional dependency of simple-pm-bus. Remove the dependency.
Fixes: 447bd8f1e5cf ("simple-pm-bus: Make clocks optional")
Signed-off-by: Markus Schneider-Pargmann (TI) <[email protected]>
| -rw-r--r-- | drivers/core/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/core/Kconfig b/drivers/core/Kconfig index cbefb522e58..ae0c3466772 100644 --- a/drivers/core/Kconfig +++ b/drivers/core/Kconfig @@ -337,7 +337,7 @@ config SIMPLE_BUS_CORRECT_RANGE config SIMPLE_PM_BUS bool "Support simple-pm-bus driver" - depends on DM && OF_CONTROL && CLK && POWER_DOMAIN + depends on DM && OF_CONTROL && POWER_DOMAIN help Supports the 'simple-pm-bus' driver, which is used for busses that have power domains and/or clocks which need to be enabled before use. |
