]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
clk: sunxi-ng: sun8i-de2: Sort structures
authorJernej Skrabec <jernej.skrabec@siol.net>
Tue, 11 Feb 2020 18:59:36 +0000 (19:59 +0100)
committerMaxime Ripard <maxime@cerno.tech>
Wed, 12 Feb 2020 18:01:16 +0000 (19:01 +0100)
V3s quirks are not in right place. Move it.

Signed-off-by: Jernej Skrabec <jernej.skrabec@siol.net>
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
drivers/clk/sunxi-ng/ccu-sun8i-de2.c

index 5a278c391f1dbce1a4b2c766ee559b751cfa0a8f..524f33275bc73c1661921358815cf3dd9e2fa968 100644 (file)
@@ -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),
@@ -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;