diff options
| author | Bin Meng <[email protected]> | 2021-03-14 20:14:47 +0800 |
|---|---|---|
| committer | Priyanka Jain <[email protected]> | 2021-04-15 14:22:17 +0530 |
| commit | 33aad0b0920987ef74b15bc413058a3285d28bec (patch) | |
| tree | 0603de04552ecb4a65650bd626141c2ed36f1716 /net | |
| parent | 173c66bf9c0cfefd0ff69f0939c95900340d0988 (diff) | |
dm: mdio: Use ofnode_phy_is_fixed_link() API
Switch to use the ofnode_phy_is_fixed_link() API which can support
both the new and old DT bindings.
Signed-off-by: Bin Meng <[email protected]>
Reviewed-by: Ramon Fried <[email protected]>
Reviewed-by: Vladimir Oltean <[email protected]>
Reviewed-by: Priyanka Jain <[email protected]>
Diffstat (limited to 'net')
| -rw-r--r-- | net/mdio-uclass.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/mdio-uclass.c b/net/mdio-uclass.c index 5da984ca3f1..2a9533c88ba 100644 --- a/net/mdio-uclass.c +++ b/net/mdio-uclass.c @@ -11,6 +11,7 @@ #include <miiphy.h> #include <dm/device-internal.h> #include <dm/device_compat.h> +#include <dm/of_extra.h> #include <dm/uclass-internal.h> #include <linux/compat.h> @@ -140,7 +141,7 @@ static struct phy_device *dm_eth_connect_phy_handle(struct udevice *ethdev, int i; if (CONFIG_IS_ENABLED(PHY_FIXED) && - ofnode_valid(dev_read_subnode(ethdev, "fixed-link"))) { + ofnode_phy_is_fixed_link(dev_ofnode(ethdev), NULL)) { phy = phy_connect(NULL, -1, ethdev, interface); goto out; } |
