Commit 330d83b1 authored by Sachin Kamat's avatar Sachin Kamat Committed by Mike Turquette
Browse files

clk: nomadik: Fix incorrect placement of __initconst



__initconst should be placed between the variable name and equal
sign for the variable to be placed in the intended section.

Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Acked-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Signed-off-by: default avatarMike Turquette <mturquette@linaro.org>
parent 3bbc55dd
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -479,12 +479,12 @@ static void __init of_nomadik_src_clk_setup(struct device_node *np)
		of_clk_add_provider(np, of_clk_src_simple_get, clk);
}

static const __initconst struct of_device_id nomadik_src_match[] = {
static const struct of_device_id nomadik_src_match[] __initconst = {
	{ .compatible = "stericsson,nomadik-src" },
	{ /* sentinel */ }
};

static const __initconst struct of_device_id nomadik_src_clk_match[] = {
static const struct of_device_id nomadik_src_clk_match[] __initconst = {
	{
		.compatible = "fixed-clock",
		.data = of_fixed_clk_setup,