]> Git Repo - linux.git/commitdiff
net: bcmgenet: Return PTR_ERR() for fixed_phy_register()
authorRuan Jinjie <[email protected]>
Fri, 18 Aug 2023 07:07:06 +0000 (15:07 +0800)
committerDavid S. Miller <[email protected]>
Sun, 20 Aug 2023 14:13:27 +0000 (15:13 +0100)
fixed_phy_register() returns -EPROBE_DEFER, -EINVAL and -EBUSY,
etc, in addition to -ENODEV. The Best practice is to return these
error codes with PTR_ERR().

Signed-off-by: Ruan Jinjie <[email protected]>
Acked-by: Doug Berger <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
drivers/net/ethernet/broadcom/genet/bcmmii.c

index 0092e46c46f83c668bff5833a0d1b3e89c6b63bf..4012a141a229bffc906977f8ae05d50faf2848ba 100644 (file)
@@ -619,7 +619,7 @@ static int bcmgenet_mii_pd_init(struct bcmgenet_priv *priv)
                phydev = fixed_phy_register(PHY_POLL, &fphy_status, NULL);
                if (!phydev || IS_ERR(phydev)) {
                        dev_err(kdev, "failed to register fixed PHY device\n");
-                       return -ENODEV;
+                       return PTR_ERR(phydev);
                }
 
                /* Make sure we initialize MoCA PHYs with a link down */
This page took 0.061639 seconds and 4 git commands to generate.