diff options
author | Lukasz Czechowski <lukasz.czechowski@thaumatec.com> | 2025-05-20 13:36:41 +0200 |
---|---|---|
committer | Kever Yang <kever.yang@rock-chips.com> | 2025-06-06 17:12:20 +0800 |
commit | 6773a46f1131fe95bcddb7472635e07a5fd249f8 (patch) | |
tree | b195bc2de3df6f3d3c746552e91ce9e1a54e147d | |
parent | c1f9995d822275aeda76ce5ae0d4b66c57f2d7fc (diff) |
ram: rockchip: Fix dependency of RAM_ROCKCHIP_DEBUG
The RAM_ROCKCHIP_DEBUG can be used only if DEBUG_UART is
available.
The next commit introduces changes in definition of debug
uart functions, so that DEBUG_UART is required to be defined
in order to initialize uart and use print functions.
Signed-off-by: Lukasz Czechowski <lukasz.czechowski@thaumatec.com>
Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de>
-rw-r--r-- | drivers/ram/rockchip/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/ram/rockchip/Kconfig b/drivers/ram/rockchip/Kconfig index 67c63ecba04..d707d09c1c8 100644 --- a/drivers/ram/rockchip/Kconfig +++ b/drivers/ram/rockchip/Kconfig @@ -15,6 +15,7 @@ if RAM_ROCKCHIP config RAM_ROCKCHIP_DEBUG bool "Rockchip ram drivers debugging" + depends on DEBUG_UART default y help This enables debugging ram driver API's for the platforms |