diff options
author | Justin Chen <justin.chen@broadcom.com> | 2024-02-29 01:53:58 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2024-03-01 12:22:50 +0300 |
commit | 9112fc0109fc0037ac3b8b633a169e78b4e23ca1 (patch) | |
tree | 045f98c5f5668a3729656c8ea3ff7469462bedc0 | |
parent | 1d472eb5b6701810e0b25ae5cea40a9908019780 (diff) | |
download | linux-9112fc0109fc0037ac3b8b633a169e78b4e23ca1.tar.xz |
net: phy: mdio-bcm-unimac: Add asp v2.2 support
Add mdio compat string for ASP 2.0 ethernet driver.
Signed-off-by: Justin Chen <justin.chen@broadcom.com>
Acked-by: Florian Fainelli <florian.fainelli@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/mdio/mdio-bcm-unimac.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/mdio/mdio-bcm-unimac.c b/drivers/net/mdio/mdio-bcm-unimac.c index 6fe08427fdd4..f40eb50bb978 100644 --- a/drivers/net/mdio/mdio-bcm-unimac.c +++ b/drivers/net/mdio/mdio-bcm-unimac.c @@ -334,6 +334,7 @@ static SIMPLE_DEV_PM_OPS(unimac_mdio_pm_ops, NULL, unimac_mdio_resume); static const struct of_device_id unimac_mdio_ids[] = { + { .compatible = "brcm,asp-v2.2-mdio", }, { .compatible = "brcm,asp-v2.1-mdio", }, { .compatible = "brcm,asp-v2.0-mdio", }, { .compatible = "brcm,genet-mdio-v5", }, |