From: Shawn Guo Date: Wed, 28 May 2014 02:20:55 +0000 (+0800) Subject: ENGR00318063-1: ARM: imx6sl: fix clock name in ocram_sels X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b79f29b6a77d82817bb501495ca49d051723a3be;p=karo-tx-linux.git ENGR00318063-1: ARM: imx6sl: fix clock name in ocram_sels The clock IMX6SL_CLK_OCRAM_ALT_SEL is registered with name "ocram_alt_sel", so the name in ocram_sels should be "ocram_alt_sel" than "ocram_alt_sels". shawn.guo: cherry-pick commit 4e8da832fd92 from imx_3.10.y Signed-off-by: Shawn Guo --- diff --git a/arch/arm/mach-imx/clk-imx6sl.c b/arch/arm/mach-imx/clk-imx6sl.c index d1071da941d7..f581f3f3d135 100644 --- a/arch/arm/mach-imx/clk-imx6sl.c +++ b/arch/arm/mach-imx/clk-imx6sl.c @@ -37,7 +37,7 @@ static const char *step_sels[] = { "osc", "pll2_pfd2", }; static const char *pll1_sw_sels[] = { "pll1_sys", "step", }; static const char *ocram_alt_sels[] = { "pll2_pfd2", "pll3_pfd1", }; -static const char *ocram_sels[] = { "periph", "ocram_alt_sels", }; +static const char *ocram_sels[] = { "periph", "ocram_alt_sel", }; static const char *pre_periph_sels[] = { "pll2_bus", "pll2_pfd2", "pll2_pfd0", "pll2_198m", }; static const char *periph_clk2_sels[] = { "pll3_usb_otg", "osc", "osc", "dummy", }; static const char *periph2_clk2_sels[] = { "pll3_usb_otg", "pll2_bus", };