Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f42af6c4 authored by Dirk Eibach's avatar Dirk Eibach Committed by David S. Miller
Browse files

net: Fix driver name for mdio-gpio.c



Since commit
"74888760... dt/net: Eliminate users of of_platform_{,un}register_driver"
there are two platform drivers named "mdio-gpio" registered.
I renamed the of variant to "mdio-ofgpio".

Signed-off-by: default avatarDirk Eibach <eibach@gdsys.de>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d2237d35
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -241,7 +241,7 @@ MODULE_DEVICE_TABLE(of, mdio_ofgpio_match);

static struct platform_driver mdio_ofgpio_driver = {
	.driver = {
		.name = "mdio-gpio",
		.name = "mdio-ofgpio",
		.owner = THIS_MODULE,
		.of_match_table = mdio_ofgpio_match,
	},