diff options
| author | David Lechner <[email protected]> | 2026-07-07 14:10:06 -0500 |
|---|---|---|
| committer | David Lechner <[email protected]> | 2026-07-22 12:41:03 -0500 |
| commit | 9b9ecfdba4c24acec2ab9de5a0191bf7f129aa64 (patch) | |
| tree | 22fbf7a4a6a012d075096355925e312b834d9fa1 | |
| parent | 552431a59fb8d65ce00ba5531b57c8fecb159a9b (diff) | |
clk: mediatek: mt7981: unique driver names
Change driver names for MediaTek mt7981 clocks to be globally unique.
This will allow better build bot testing by allowing all clocks to be
compiled at the same time.
Link: https://patch.msgid.link/20260707-mtk-clk-unique-driver-names-v1-4-283d9a55361e@baylibre.com
Signed-off-by: David Lechner <[email protected]>
| -rw-r--r-- | drivers/clk/mediatek/clk-mt7981.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/clk/mediatek/clk-mt7981.c b/drivers/clk/mediatek/clk-mt7981.c index debee21fcc5..4e3a1c9d835 100644 --- a/drivers/clk/mediatek/clk-mt7981.c +++ b/drivers/clk/mediatek/clk-mt7981.c @@ -687,7 +687,7 @@ static int mt7981_topckgen_probe(struct udevice *dev) return mtk_common_clk_init(dev, &mt7981_topckgen_clk_tree); } -U_BOOT_DRIVER(mtk_clk_apmixedsys) = { +U_BOOT_DRIVER(mt7981_clk_apmixedsys) = { .name = "mt7981-clock-fixed-pll", .id = UCLASS_CLK, .of_match = mt7981_fixed_pll_compat, @@ -698,7 +698,7 @@ U_BOOT_DRIVER(mtk_clk_apmixedsys) = { .flags = DM_FLAG_PRE_RELOC, }; -U_BOOT_DRIVER(mtk_clk_topckgen) = { +U_BOOT_DRIVER(mt7981_clk_topckgen) = { .name = "mt7981-clock-topckgen", .id = UCLASS_CLK, .of_match = mt7981_topckgen_compat, @@ -719,7 +719,7 @@ static int mt7981_infracfg_probe(struct udevice *dev) return mtk_common_clk_init(dev, &mt7981_infracfg_clk_tree); } -U_BOOT_DRIVER(mtk_clk_infracfg) = { +U_BOOT_DRIVER(mt7981_clk_infracfg) = { .name = "mt7981-clock-infracfg", .id = UCLASS_CLK, .of_match = mt7981_infracfg_compat, @@ -762,7 +762,7 @@ static const struct udevice_id mt7981_sgmii0sys_compat[] = { {} }; -U_BOOT_DRIVER(mtk_clk_sgmii0sys) = { +U_BOOT_DRIVER(mt7981_clk_sgmii0sys) = { .name = "mt7981-clock-sgmii0sys", .id = UCLASS_CLK, .of_match = mt7981_sgmii0sys_compat, @@ -789,7 +789,7 @@ static const struct udevice_id mt7981_sgmii1sys_compat[] = { {} }; -U_BOOT_DRIVER(mtk_clk_sgmii1sys) = { +U_BOOT_DRIVER(mt7981_clk_sgmii1sys) = { .name = "mt7981-clock-sgmii1sys", .id = UCLASS_CLK, .of_match = mt7981_sgmii1sys_compat, @@ -843,7 +843,7 @@ static const struct udevice_id mt7981_ethsys_compat[] = { {} }; -U_BOOT_DRIVER(mtk_clk_ethsys) = { +U_BOOT_DRIVER(mt7981_clk_ethsys) = { .name = "mt7981-clock-ethsys", .id = UCLASS_CLK, .of_match = mt7981_ethsys_compat, |
