From: David Lechner Date: Tue, 7 Jul 2026 19:10:15 +0000 (-0500) Subject: clk: mediatek: mt8512: unique driver names X-Git-Tag: v2026.10-rc1~17^2~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc8cb613f4d0592ab3fc0ab4b92981ab74a890b3;p=thirdparty%2Fu-boot.git clk: mediatek: mt8512: unique driver names Change driver names for MediaTek mt8512 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-13-283d9a55361e@baylibre.com Signed-off-by: David Lechner --- diff --git a/drivers/clk/mediatek/clk-mt8512.c b/drivers/clk/mediatek/clk-mt8512.c index 2bfd8c4b1b9..88c55e5ac6c 100644 --- a/drivers/clk/mediatek/clk-mt8512.c +++ b/drivers/clk/mediatek/clk-mt8512.c @@ -862,7 +862,7 @@ static const struct udevice_id mt8512_infracfg_compat[] = { { } }; -U_BOOT_DRIVER(mtk_clk_apmixedsys) = { +U_BOOT_DRIVER(mt8512_clk_apmixedsys) = { .name = "mt8512-apmixedsys", .id = UCLASS_CLK, .of_match = mt8512_apmixed_compat, @@ -873,7 +873,7 @@ U_BOOT_DRIVER(mtk_clk_apmixedsys) = { .flags = DM_FLAG_PRE_RELOC, }; -U_BOOT_DRIVER(mtk_clk_topckgen) = { +U_BOOT_DRIVER(mt8512_clk_topckgen) = { .name = "mt8512-topckgen", .id = UCLASS_CLK, .of_match = mt8512_topckgen_compat, @@ -884,7 +884,7 @@ U_BOOT_DRIVER(mtk_clk_topckgen) = { .flags = DM_FLAG_PRE_RELOC, }; -U_BOOT_DRIVER(mtk_clk_topckgen_cg) = { +U_BOOT_DRIVER(mt8512_clk_topckgen_cg) = { .name = "mt8512-topckgen-cg", .id = UCLASS_CLK, .of_match = mt8512_topckgen_cg_compat, @@ -894,7 +894,7 @@ U_BOOT_DRIVER(mtk_clk_topckgen_cg) = { .flags = DM_FLAG_PRE_RELOC, }; -U_BOOT_DRIVER(mtk_clk_infracfg) = { +U_BOOT_DRIVER(mt8512_clk_infracfg) = { .name = "mt8512-infracfg", .id = UCLASS_CLK, .of_match = mt8512_infracfg_compat,