From: Olof Johansson Date: Mon, 26 May 2014 21:19:34 +0000 (-0700) Subject: clk: samsung: fix build error X-Git-Tag: v4.9.8~5950^2~48^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=708cec66429cf1ad56d0e849acc3367e8469b1af;p=platform%2Fkernel%2Flinux-rpi3.git clk: samsung: fix build error "clk: samsung: clk-s3c2410-dlck: do not use PNAME macro as it declares __initdata" had a typo in it which caused build failure. Trivial fix. Signed-off-by: Olof Johansson --- diff --git a/drivers/clk/samsung/clk-s3c2410-dclk.c b/drivers/clk/samsung/clk-s3c2410-dclk.c index c1726f4..0449cc0 100644 --- a/drivers/clk/samsung/clk-s3c2410-dclk.c +++ b/drivers/clk/samsung/clk-s3c2410-dclk.c @@ -143,7 +143,7 @@ static const char *clkout1_s3c2410_p[] = { "mpll", "upll", "fclk", "hclk", "pclk static const char *clkout0_s3c2412_p[] = { "mpll", "upll", "rtc_clkout", "hclk", "pclk", "gate_dclk0" }; -static const char *clkout1_s3c2412_p) = { "xti", "upll", "fclk", "hclk", "pclk", +static const char *clkout1_s3c2412_p[] = { "xti", "upll", "fclk", "hclk", "pclk", "gate_dclk1" }; static const char *clkout0_s3c2440_p[] = { "xti", "upll", "fclk", "hclk", "pclk",