aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrygorii Strashko <grygorii.strashko@ti.com>2018-09-10 18:57:54 -0400
committerTony Lindgren <tony@atomide.com>2018-09-20 17:42:51 -0400
commit3a25128c02f6935b393aba481808bee5c8ccc29a (patch)
treeb48395ff6744bbddce9d890d96dc547be65366d2
parentabf878ddfdf28f1d6d0d691ed165d0664dc850f9 (diff)
ARM: dts: dm8148-t410: get rid of phy_id property
The phy_id property is deprecated and phy-handle has to be used instead. Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
-rw-r--r--arch/arm/boot/dts/dm8148-t410.dts14
1 files changed, 12 insertions, 2 deletions
diff --git a/arch/arm/boot/dts/dm8148-t410.dts b/arch/arm/boot/dts/dm8148-t410.dts
index c46a227b543d..63301bcacf19 100644
--- a/arch/arm/boot/dts/dm8148-t410.dts
+++ b/arch/arm/boot/dts/dm8148-t410.dts
@@ -36,15 +36,25 @@
36}; 36};
37 37
38&cpsw_emac0 { 38&cpsw_emac0 {
39 phy_id = <&davinci_mdio>, <0>; 39 phy-handle = <&ethphy0>;
40 phy-mode = "rgmii"; 40 phy-mode = "rgmii";
41}; 41};
42 42
43&cpsw_emac1 { 43&cpsw_emac1 {
44 phy_id = <&davinci_mdio>, <1>; 44 phy-handle = <&ethphy1>;
45 phy-mode = "rgmii"; 45 phy-mode = "rgmii";
46}; 46};
47 47
48&davinci_mdio {
49 ethphy0: ethernet-phy@0 {
50 reg = <0>;
51 };
52
53 ethphy1: ethernet-phy@1 {
54 reg = <1>;
55 };
56};
57
48&mmc1 { 58&mmc1 {
49 status = "disabled"; 59 status = "disabled";
50}; 60};