[PATCH] ram: rockchip: Fix Kconfig dependency for RAM_ROCKCHIP_DEBUG

There is no reason to show RAM_ROCKCHIP_DEBUG entry in other .config files as I see it for Xilinx ZynqMP.
# CONFIG_U_QE is not set # CONFIG_RAM is not set CONFIG_RAM_ROCKCHIP_DEBUG=y
Add missing dependency on RAM_ROCKCHIP driver.
Signed-off-by: Michal Simek michal.simek@xilinx.com ---
drivers/ram/rockchip/Kconfig | 1 + 1 file changed, 1 insertion(+)
diff --git a/drivers/ram/rockchip/Kconfig b/drivers/ram/rockchip/Kconfig index b75d581f5797..8e97c2f49e23 100644 --- a/drivers/ram/rockchip/Kconfig +++ b/drivers/ram/rockchip/Kconfig @@ -13,6 +13,7 @@ config ROCKCHIP_SDRAM_COMMON
config RAM_ROCKCHIP_DEBUG bool "Rockchip ram drivers debugging" + depends on RAM_ROCKCHIP default y help This enables debugging ram driver API's for the platforms

On Thu, Feb 13, 2020 at 08:29:45AM +0100, Michal Simek wrote:
There is no reason to show RAM_ROCKCHIP_DEBUG entry in other .config files as I see it for Xilinx ZynqMP.
# CONFIG_U_QE is not set # CONFIG_RAM is not set CONFIG_RAM_ROCKCHIP_DEBUG=y
Add missing dependency on RAM_ROCKCHIP driver.
Signed-off-by: Michal Simek michal.simek@xilinx.com
Applied to u-boot/master, thanks!
participants (2)
-
Michal Simek
-
Tom Rini