phy: broadcom: Add bcm54213pe configuration
authorPhil Elwell <phil@raspberrypi.com>
Thu, 29 Oct 2020 14:10:56 +0000 (14:10 +0000)
committerDom Cobley <popcornmix@gmail.com>
Mon, 19 Feb 2024 11:33:06 +0000 (11:33 +0000)
Signed-off-by: Phil Elwell <phil@raspberrypi.com>
drivers/net/phy/broadcom.c

index b79b46e..caeef60 100644 (file)
@@ -101,6 +101,11 @@ static int bcm54210e_config_init(struct phy_device *phydev)
        return 0;
 }
 
+static int bcm54213pe_config_init(struct phy_device *phydev)
+{
+       return bcm54210e_config_init(phydev);
+}
+
 static int bcm54612e_config_init(struct phy_device *phydev)
 {
        int reg;
@@ -391,6 +396,9 @@ static int bcm54xx_config_init(struct phy_device *phydev)
        case PHY_ID_BCM54612E:
                err = bcm54612e_config_init(phydev);
                break;
+       case PHY_ID_BCM54213PE:
+               err = bcm54213pe_config_init(phydev);
+               break;
        case PHY_ID_BCM54616S:
                err = bcm54616s_config_init(phydev);
                break;