diff options
author | Grygorii Strashko | 2019-08-31 10:30:32 +0300 |
---|---|---|
committer | Tom Rini | 2019-11-03 09:15:46 -0500 |
commit | 68d875da4cb0824ceb0b4c436d0447bd28686342 (patch) | |
tree | 531a3cca7340f3beaabed8d74053ebb68fb9ae05 /arch/arm/dts/dra7-evm.dts | |
parent | 5d6f05352b69d4858a2a9e9136ac3a734f0222bb (diff) |
arm: dts: dra7: sync cpsw/mdio/phy with latest linux - drop phy_id
Synchronize CPSW/MDIO/PHY DT nodes with latest linux - replace deprecated
phy_id property with phy-handle.
Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
Cc: Lokesh Vutla <lokeshvutla@ti.com>
Diffstat (limited to 'arch/arm/dts/dra7-evm.dts')
-rw-r--r-- | arch/arm/dts/dra7-evm.dts | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/arch/arm/dts/dra7-evm.dts b/arch/arm/dts/dra7-evm.dts index aa426dabb6c..43de9638e34 100644 --- a/arch/arm/dts/dra7-evm.dts +++ b/arch/arm/dts/dra7-evm.dts @@ -479,17 +479,27 @@ }; &cpsw_emac0 { - phy_id = <&davinci_mdio>, <2>; + phy-handle = <ðphy0>; phy-mode = "rgmii"; dual_emac_res_vlan = <1>; }; &cpsw_emac1 { - phy_id = <&davinci_mdio>, <3>; + phy-handle = <ðphy1>; phy-mode = "rgmii"; dual_emac_res_vlan = <2>; }; +&davinci_mdio { + ethphy0: ethernet-phy@2 { + reg = <2>; + }; + + ethphy1: ethernet-phy@3 { + reg = <3>; + }; +}; + &dcan1 { status = "ok"; pinctrl-names = "default", "sleep", "active"; |