]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
clk: mediatek: mt7629: remove mt7629_peri_clk_tree
authorDavid Lechner <dlechner@baylibre.com>
Fri, 10 Jul 2026 18:56:40 +0000 (13:56 -0500)
committerDavid Lechner <dlechner@baylibre.com>
Wed, 22 Jul 2026 17:01:17 +0000 (12:01 -0500)
Remove the mt7629_peri_clk_tree struct. Most of the fields are unused
and we can just use mt7629_clk_tree instead as it has the required
fields.

Link: https://patch.msgid.link/20260710-mtk-clk-parent-lookup-improvements-v2-24-f3f3a4a28dca@baylibre.com
Signed-off-by: David Lechner <dlechner@baylibre.com>
drivers/clk/mediatek/clk-mt7629.c

index 903e9d8ec81b6ea6afa2eb92bd1198111f217a83..b65d3ef2203f0aa7f82e889f4bb1d4d1335dcfaf 100644 (file)
@@ -603,22 +603,6 @@ static const struct mtk_clk_tree mt7629_clk_tree = {
        .num_ext_clks = ARRAY_SIZE(ext_clock_rates),
 };
 
-static const struct mtk_clk_tree mt7629_peri_clk_tree = {
-       .pll_parent = EXT_PARENT(CLK_PAD_CLK20M),
-       .ext_clk_rates = ext_clock_rates,
-       .num_ext_clks = ARRAY_SIZE(ext_clock_rates),
-       .fdivs_offs = CLK_TOP_TO_USB3_SYS,
-       .muxes_offs = CLK_TOP_AXI_SEL,
-       .plls = apmixed_plls,
-       .fclks = top_fixed_clks,
-       .fdivs = top_fixed_divs,
-       .muxes = top_muxes,
-       .num_plls = ARRAY_SIZE(apmixed_plls),
-       .num_fclks = ARRAY_SIZE(top_fixed_clks),
-       .num_fdivs = ARRAY_SIZE(top_fixed_divs),
-       .num_muxes = ARRAY_SIZE(top_muxes),
-};
-
 static int mt7629_mcucfg_probe(struct udevice *dev)
 {
        void __iomem *base;
@@ -665,7 +649,7 @@ static int mt7629_infracfg_probe(struct udevice *dev)
 
 static int mt7629_pericfg_probe(struct udevice *dev)
 {
-       return mtk_common_clk_gate_init(dev, &mt7629_peri_clk_tree, peri_cgs,
+       return mtk_common_clk_gate_init(dev, &mt7629_clk_tree, peri_cgs,
                                        ARRAY_SIZE(peri_cgs), CLK_PERI_PWM1_PD);
 }