From 353eb17087ce9af780ac8a6d26bb7781d689616d Mon Sep 17 00:00:00 2001 From: Angelo Dureghello Date: Tue, 7 Feb 2023 21:28:00 +0100 Subject: [PATCH] m68k: add global variable sdhc_per_clk for m68k The FSL eSDHC controller supports two reference clocks. They are platform clock and periperhal clock. The global variable sdhc_clk has already been used for platform clock. ColdFire also uses eSHDC controller, as in arm and powerpc, so adding sdhc_per_clk to arch_global_data. Signed-off-by: Angelo Durgehello --- arch/m68k/include/asm/global_data.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/m68k/include/asm/global_data.h b/arch/m68k/include/asm/global_data.h index 273e843c4a..5f576ba16f 100644 --- a/arch/m68k/include/asm/global_data.h +++ b/arch/m68k/include/asm/global_data.h @@ -23,6 +23,9 @@ struct arch_global_data { #ifdef CONFIG_MCF5441x unsigned long sdhc_clk; #endif +#if defined(CONFIG_FSL_ESDHC) + u32 sdhc_per_clk; +#endif }; #include -- 2.39.5