Skip to content

Commit

Permalink
clk: atlas7: move variable-definition together
Browse files Browse the repository at this point in the history
re-order the codes more reasonable by moving variable-definition
together.

Signed-off-by: Guo Zeng <Guo.Zeng@csr.com>
Signed-off-by: Barry Song <Baohua.Song@csr.com>
Signed-off-by: Michael Turquette <mturquette@baylibre.com>
  • Loading branch information
Guo Zeng authored and Michael Turquette committed Sep 29, 2015
1 parent 6f83d30 commit 1f57d1d
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions drivers/clk/sirf/clk-atlas7.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 1f57d1d

Please sign in to comment.