net: mscc: ocelot: fix duplicate driver name error
authorVladimir Oltean <vladimir.oltean@nxp.com>
Fri, 24 Feb 2023 15:52:35 +0000 (17:52 +0200)
committerDavid S. Miller <davem@davemloft.net>
Sun, 26 Feb 2023 18:31:37 +0000 (18:31 +0000)
When compiling a kernel which has both CONFIG_NET_DSA_MSCC_OCELOT_EXT
and CONFIG_MSCC_OCELOT_SWITCH enabled, the following error message will
be printed:

[    5.266588] Error: Driver 'ocelot-switch' is already registered, aborting...

Rename the ocelot_ext.c driver to "ocelot-ext-switch" to avoid the name
duplication, and update the mfd_cell entry for its resources.

Fixes: 3d7316ac81ac ("net: dsa: ocelot: add external ocelot switch control")
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/mfd/ocelot-core.c
drivers/net/dsa/ocelot/ocelot_ext.c

index b0ff05c1759f7721097333920747693c3755fba5..e1772ff00cadb8a67560caf046d62bf148589367 100644 (file)
@@ -177,7 +177,7 @@ static const struct mfd_cell vsc7512_devs[] = {
                .num_resources = ARRAY_SIZE(vsc7512_miim1_resources),
                .resources = vsc7512_miim1_resources,
        }, {
-               .name = "ocelot-switch",
+               .name = "ocelot-ext-switch",
                .of_compatible = "mscc,vsc7512-switch",
                .num_resources = ARRAY_SIZE(vsc7512_switch_resources),
                .resources = vsc7512_switch_resources,
index 14efa6387bd73e5d3658085e3cf5ea75d2aaadef..52b41db63a28f9fd0f80e76108ce735e3c03e541 100644 (file)
@@ -149,7 +149,7 @@ MODULE_DEVICE_TABLE(of, ocelot_ext_switch_of_match);
 
 static struct platform_driver ocelot_ext_switch_driver = {
        .driver = {
-               .name = "ocelot-switch",
+               .name = "ocelot-ext-switch",
                .of_match_table = of_match_ptr(ocelot_ext_switch_of_match),
        },
        .probe = ocelot_ext_probe,