The AR9331 switch driver registers an OF match table on the MDIO bus.
The bus emits an OF modalias for matching devices, but this table is
not exported to the module's alias metadata.
Publish the existing table without changing DSA registration or routing.
Fixes: ec6698c272de ("net: dsa: add support for Atheros AR9331 built-in switch")
Signed-off-by: hpp.iscas <redacted>
---
drivers/net/dsa/qca/ar9331.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/net/dsa/qca/ar9331.c b/drivers/net/dsa/qca/ar9331.c
index 0526aa9..4b3b961 100644
--- a/drivers/net/dsa/qca/ar9331.c
+++ b/drivers/net/dsa/qca/ar9331.c
@@ -1124,6 +1124,7 @@ static const struct of_device_id ar9331_sw_of_match[] = {
{ .compatible = "qca,ar9331-switch" },
{ },
};
+MODULE_DEVICE_TABLE(of, ar9331_sw_of_match);
static struct mdio_driver ar9331_sw_mdio_driver = {
.probe = ar9331_sw_probe,