From: Guo Zeng Date: Fri, 14 Aug 2015 01:11:02 +0000 (+0000) Subject: clk: atlas7: move variable-definition together X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=1f57d1d88cb2a89466e1782e1c2fd358771ea4c5;p=linux-beck.git clk: atlas7: move variable-definition together re-order the codes more reasonable by moving variable-definition together. Signed-off-by: Guo Zeng Signed-off-by: Barry Song Signed-off-by: Michael Turquette --- diff --git a/drivers/clk/sirf/clk-atlas7.c b/drivers/clk/sirf/clk-atlas7.c index a98e21fe773a..d34d1b3fcf7e 100644 --- a/drivers/clk/sirf/clk-atlas7.c +++ b/drivers/clk/sirf/clk-atlas7.c @@ -206,18 +206,6 @@ #define SIRFSOC_CLKC_LEAF_CLK_EN8_SET 0x0548 -static void __iomem *sirfsoc_clk_vbase; -static struct clk_onecell_data clk_data; - -static const struct clk_div_table pll_div_table[] = { - { .val = 0, .div = 1 }, - { .val = 1, .div = 2 }, - { .val = 2, .div = 4 }, - { .val = 3, .div = 8 }, - { .val = 4, .div = 16 }, - { .val = 5, .div = 32 }, -}; - struct clk_pll { struct clk_hw hw; u16 regofs; /* register offset */ @@ -284,6 +272,18 @@ struct atlas7_reset_desc { spinlock_t *lock; }; +static void __iomem *sirfsoc_clk_vbase; +static struct clk_onecell_data clk_data; + +static const struct clk_div_table pll_div_table[] = { + { .val = 0, .div = 1 }, + { .val = 1, .div = 2 }, + { .val = 2, .div = 4 }, + { .val = 3, .div = 8 }, + { .val = 4, .div = 16 }, + { .val = 5, .div = 32 }, +}; + static DEFINE_SPINLOCK(cpupll_ctrl1_lock); static DEFINE_SPINLOCK(mempll_ctrl1_lock); static DEFINE_SPINLOCK(sys0pll_ctrl1_lock);