projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
202e5ae
)
clk: exynos5440: Fix incorrect placement of __initdata
author
Sachin Kamat
<sachin.kamat@linaro.org>
Wed, 7 Aug 2013 04:48:40 +0000
(10:18 +0530)
committer
Mike Turquette
<mturquette@linaro.org>
Thu, 8 Aug 2013 22:57:37 +0000
(15:57 -0700)
__initdata should be placed between the variable name and equal
sign for the variable to be placed in the intended section.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
drivers/clk/samsung/clk-exynos5440.c
patch
|
blob
|
history
diff --git
a/drivers/clk/samsung/clk-exynos5440.c
b/drivers/clk/samsung/clk-exynos5440.c
index 6d043a285d86447606f1309b9af834ad5df1bd49..4ef38e045e39035bcb7012aeb99255866c840805 100644
(file)
--- a/
drivers/clk/samsung/clk-exynos5440.c
+++ b/
drivers/clk/samsung/clk-exynos5440.c
@@
-97,7
+97,7
@@
static struct samsung_gate_clock exynos5440_gate_clks[] __initdata = {
GATE(cs250_o, "cs250_o", "cs250", CLKEN_OV_VAL, 19, 0, 0),
};
-static
__initdata struct of_device_id ext_clk_match[]
= {
+static
struct of_device_id ext_clk_match[] __initdata
= {
{ .compatible = "samsung,clock-xtal", .data = (void *)0, },
{},
};