From 182d45ddff8944e291c805d94a01d7dd29d0d3b6 Mon Sep 17 00:00:00 2001 From: Michal Simek Date: Fri, 22 Apr 2022 15:32:21 +0200 Subject: [PATCH] cpu: 83xx: Add missing dependency on CPU_MPC83XX It looks quite weird that for non PPC platforms cpu driver for MPC83xx can be selected. That's why define proper dependency. Signed-off-by: Michal Simek Reviewed-by: Tom Rini Reviewed-by: Priyanka Jain --- drivers/cpu/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/cpu/Kconfig b/drivers/cpu/Kconfig index 3d5729f..7897281 100644 --- a/drivers/cpu/Kconfig +++ b/drivers/cpu/Kconfig @@ -9,7 +9,7 @@ config CPU config CPU_MPC83XX bool "Enable MPC83xx CPU driver" - depends on CPU + depends on CPU && MPC83xx select CLK_MPC83XX help Support CPU cores for SoCs of the MPC83xx series. -- 2.7.4