]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
clk: mediatek: mt8518: unique driver names
authorDavid Lechner <dlechner@baylibre.com>
Tue, 7 Jul 2026 19:10:17 +0000 (14:10 -0500)
committerDavid Lechner <dlechner@baylibre.com>
Wed, 22 Jul 2026 17:41:03 +0000 (12:41 -0500)
Change driver names for MediaTek mt8518 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-15-283d9a55361e@baylibre.com
Signed-off-by: David Lechner <dlechner@baylibre.com>
drivers/clk/mediatek/clk-mt8518.c

index 51599c10cd58bc782cc83195f1b2113ef0589975..1033ecae187ac2477df1d903b452c0a2bbfeeaf1 100644 (file)
@@ -1559,7 +1559,7 @@ static const struct udevice_id mt8518_topckgen_cg_compat[] = {
        { }
 };
 
-U_BOOT_DRIVER(mtk_clk_apmixedsys) = {
+U_BOOT_DRIVER(mt8518_clk_apmixedsys) = {
        .name = "mt8518-apmixedsys",
        .id = UCLASS_CLK,
        .of_match = mt8518_apmixed_compat,
@@ -1570,7 +1570,7 @@ U_BOOT_DRIVER(mtk_clk_apmixedsys) = {
        .flags = DM_FLAG_PRE_RELOC,
 };
 
-U_BOOT_DRIVER(mtk_clk_topckgen) = {
+U_BOOT_DRIVER(mt8518_clk_topckgen) = {
        .name = "mt8518-topckgen",
        .id = UCLASS_CLK,
        .of_match = mt8518_topckgen_compat,
@@ -1581,7 +1581,7 @@ U_BOOT_DRIVER(mtk_clk_topckgen) = {
        .flags = DM_FLAG_PRE_RELOC,
 };
 
-U_BOOT_DRIVER(mtk_clk_topckgen_cg) = {
+U_BOOT_DRIVER(mt8518_clk_topckgen_cg) = {
        .name = "mt8518-topckgen-cg",
        .id = UCLASS_CLK,
        .of_match = mt8518_topckgen_cg_compat,