]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
net: ethernet: ti: am65-cpsw: Convert to devm_of_phy_optional_get()
authorGeert Uytterhoeven <geert+renesas@glider.be>
Wed, 8 Mar 2023 13:04:52 +0000 (14:04 +0100)
committerJakub Kicinski <kuba@kernel.org>
Fri, 10 Mar 2023 07:28:17 +0000 (23:28 -0800)
Use the new devm_of_phy_optional_get() helper instead of open-coding the
same operation.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Siddharth Vadapalli <s-vadapalli@ti.com>
Reviewed-by: Simon Horman <simon.horman@corigine.com>
Link: https://lore.kernel.org/r/01605ea233ff7fc09bb0ea34fc8126af73db83f9.1678280599.git.geert+renesas@glider.be
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/ti/am65-cpsw-nuss.c

index 4e3861c47708c9e2af4d5912a3dc2c7c8e9feb99..25996826edabc019b8c0205d316385ba4a8c5eaf 100644 (file)
@@ -1470,11 +1470,9 @@ static int am65_cpsw_init_serdes_phy(struct device *dev, struct device_node *por
        struct phy *phy;
        int ret;
 
-       phy = devm_of_phy_get(dev, port_np, name);
-       if (PTR_ERR(phy) == -ENODEV)
-               return 0;
-       if (IS_ERR(phy))
-               return PTR_ERR(phy);
+       phy = devm_of_phy_optional_get(dev, port_np, name);
+       if (IS_ERR_OR_NULL(phy))
+               return PTR_ERR_OR_ZERO(phy);
 
        /* Serdes PHY exists. Store it. */
        port->slave.serdes_phy = phy;