]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
clk: mediatek: mt8365: unique driver names
authorDavid Lechner <dlechner@baylibre.com>
Tue, 7 Jul 2026 19:10:14 +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 mt8365 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-12-283d9a55361e@baylibre.com
Signed-off-by: David Lechner <dlechner@baylibre.com>
drivers/clk/mediatek/clk-mt8365.c

index 50208ae2fb885e6231a049f66fbad63abb81d488..bb00d6154e13e75b92a3382e14faeb637dd3ee4c 100644 (file)
@@ -790,7 +790,7 @@ static const struct udevice_id mt8365_infracfg_compat[] = {
        { }
 };
 
-U_BOOT_DRIVER(mtk_clk_apmixedsys) = {
+U_BOOT_DRIVER(mt8365_clk_apmixedsys) = {
        .name = "mt8365-apmixedsys",
        .id = UCLASS_CLK,
        .of_match = mt8365_apmixed_compat,
@@ -801,7 +801,7 @@ U_BOOT_DRIVER(mtk_clk_apmixedsys) = {
        .flags = DM_FLAG_PRE_RELOC,
 };
 
-U_BOOT_DRIVER(mtk_clk_topckgen) = {
+U_BOOT_DRIVER(mt8365_clk_topckgen) = {
        .name = "mt8365-topckgen",
        .id = UCLASS_CLK,
        .of_match = mt8365_topckgen_compat,
@@ -812,7 +812,7 @@ U_BOOT_DRIVER(mtk_clk_topckgen) = {
        .flags = DM_FLAG_PRE_RELOC,
 };
 
-U_BOOT_DRIVER(mtk_clk_infracfg) = {
+U_BOOT_DRIVER(mt8365_clk_infracfg) = {
        .name = "mt8365-infracfg",
        .id = UCLASS_CLK,
        .of_match = mt8365_infracfg_compat,