The MV88E6060 MDIO driver uses mv88e6060_of_match for OF matching.
The MDIO bus emits an OF modalias for such devices, but the module
only provides the legacy platform:mv88e6060 alias.
Publish the OF match table and retain the legacy alias.
Fixes: 277617603c02 ("net: dsa: mv88e6060: Support probing as an mdio device")
Signed-off-by: hpp.iscas <redacted>
---
drivers/net/dsa/mv88e6060.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/net/dsa/mv88e6060.c b/drivers/net/dsa/mv88e6060.c
index 9c8ac14..8373ccd 100644
--- a/drivers/net/dsa/mv88e6060.c
+++ b/drivers/net/dsa/mv88e6060.c
@@ -364,6 +364,7 @@ static const struct of_device_id mv88e6060_of_match[] = {
},
{ /* sentinel */ },
};
+MODULE_DEVICE_TABLE(of, mv88e6060_of_match);
static struct mdio_driver mv88e6060_driver = {
.probe = mv88e6060_probe,