summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Lechner <[email protected]>2026-07-07 14:10:14 -0500
committerDavid Lechner <[email protected]>2026-07-22 12:41:03 -0500
commit98c458cd32201a748ef6852851411fda1a47d32a (patch)
treeef53ebaeb08f09e6f4895408cedbc9ed732b7b46
parent82946f1797d67507b670a21fbd28de8a8607f782 (diff)
clk: mediatek: mt8365: unique driver names
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 <[email protected]>
-rw-r--r--drivers/clk/mediatek/clk-mt8365.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/clk/mediatek/clk-mt8365.c b/drivers/clk/mediatek/clk-mt8365.c
index 50208ae2fb8..bb00d6154e1 100644
--- a/drivers/clk/mediatek/clk-mt8365.c
+++ b/drivers/clk/mediatek/clk-mt8365.c
@@ -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,