Skip to content

Commit

Permalink
clk: sunxi-ng: sun8i-de2: Sort structures
Browse files Browse the repository at this point in the history
V3s quirks are not in right place. Move it.

Signed-off-by: Jernej Skrabec <[email protected]>
Signed-off-by: Maxime Ripard <[email protected]>
  • Loading branch information
jernejsk authored and mripard committed Feb 12, 2020
1 parent 11d0c43 commit b998b75
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions drivers/clk/sunxi-ng/ccu-sun8i-de2.c
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,16 @@ static const struct sunxi_ccu_desc sun8i_r40_de2_clk_desc = {
.num_resets = ARRAY_SIZE(sun8i_a83t_de2_resets),
};

static const struct sunxi_ccu_desc sun8i_v3s_de2_clk_desc = {
.ccu_clks = sun8i_v3s_de2_clks,
.num_ccu_clks = ARRAY_SIZE(sun8i_v3s_de2_clks),

.hw_clks = &sun8i_v3s_de2_hw_clks,

.resets = sun8i_a83t_de2_resets,
.num_resets = ARRAY_SIZE(sun8i_a83t_de2_resets),
};

static const struct sunxi_ccu_desc sun50i_a64_de2_clk_desc = {
.ccu_clks = sun50i_a64_de2_clks,
.num_ccu_clks = ARRAY_SIZE(sun50i_a64_de2_clks),
Expand All @@ -268,16 +278,6 @@ static const struct sunxi_ccu_desc sun50i_h5_de2_clk_desc = {
.num_resets = ARRAY_SIZE(sun50i_h5_de2_resets),
};

static const struct sunxi_ccu_desc sun8i_v3s_de2_clk_desc = {
.ccu_clks = sun8i_v3s_de2_clks,
.num_ccu_clks = ARRAY_SIZE(sun8i_v3s_de2_clks),

.hw_clks = &sun8i_v3s_de2_hw_clks,

.resets = sun8i_h3_de2_resets,
.num_resets = ARRAY_SIZE(sun8i_h3_de2_resets),
};

static int sunxi_de2_clk_probe(struct platform_device *pdev)
{
struct resource *res;
Expand Down

0 comments on commit b998b75

Please sign in to comment.