diff options
author | Justin Chen <justin.chen@broadcom.com> | 2023-07-13 15:19:04 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-07-17 07:39:04 +0100 |
commit | 9de2b402d818fcb257e61308b190661f30d36c33 (patch) | |
tree | 694abcce7bef7d81b0c0a80f064a7ecc8aec1ab0 /drivers/net/mdio | |
parent | 7c10691e1f5e2c2b358340aaed5eefccc1df17c5 (diff) | |
download | lwn-9de2b402d818fcb257e61308b190661f30d36c33.tar.gz lwn-9de2b402d818fcb257e61308b190661f30d36c33.zip |
net: phy: mdio-bcm-unimac: Add asp v2.0 support
Add mdio compat string for ASP 2.0 ethernet driver.
Reviewed-by: Simon Horman <simon.horman@corigine.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Florian Fainelli <florian.fainelli@broadcom.com>
Signed-off-by: Justin Chen <justin.chen@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/mdio')
-rw-r--r-- | drivers/net/mdio/mdio-bcm-unimac.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/mdio/mdio-bcm-unimac.c b/drivers/net/mdio/mdio-bcm-unimac.c index bfc9be23c973..6b26a0803696 100644 --- a/drivers/net/mdio/mdio-bcm-unimac.c +++ b/drivers/net/mdio/mdio-bcm-unimac.c @@ -334,6 +334,8 @@ static SIMPLE_DEV_PM_OPS(unimac_mdio_pm_ops, unimac_mdio_suspend, unimac_mdio_resume); static const struct of_device_id unimac_mdio_ids[] = { + { .compatible = "brcm,asp-v2.1-mdio", }, + { .compatible = "brcm,asp-v2.0-mdio", }, { .compatible = "brcm,genet-mdio-v5", }, { .compatible = "brcm,genet-mdio-v4", }, { .compatible = "brcm,genet-mdio-v3", }, |