summaryrefslogtreecommitdiff
path: root/drivers/net/phy/dp83867.c
diff options
context:
space:
mode:
authorDan Murphy <dmurphy@ti.com>2015-06-08 14:30:55 -0500
committerDavid S. Miller <davem@davemloft.net>2015-06-08 15:54:04 -0700
commitac7ba51c215db5739eb640f2f26025ced8668285 (patch)
tree0f4d5cbfced7a5b4a5cd4768c09012ee3df74a6f /drivers/net/phy/dp83867.c
parent684b4ac14f4306c877834a8daaf0f0665128eae4 (diff)
net: phy: dp83867: Fix device tree entries
Fix the device tree entries to modify the '_' to '-'. Also changes the names of the internal delay properties from -int- to -internal- as the -int- appeared as a keyword. Signed-off-by: Dan Murphy <dmurphy@ti.com> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy/dp83867.c')
-rw-r--r--drivers/net/phy/dp83867.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/phy/dp83867.c b/drivers/net/phy/dp83867.c
index ef0b4eb15f8d..c7a12e2e07b7 100644
--- a/drivers/net/phy/dp83867.c
+++ b/drivers/net/phy/dp83867.c
@@ -113,17 +113,17 @@ static int dp83867_of_init(struct phy_device *phydev)
if (!phydev->dev.of_node)
return -ENODEV;
- ret = of_property_read_u32(of_node, "ti,rx_int_delay",
+ ret = of_property_read_u32(of_node, "ti,rx-internal-delay",
&dp83867->rx_id_delay);
if (ret)
return ret;
- ret = of_property_read_u32(of_node, "ti,tx_int_delay",
+ ret = of_property_read_u32(of_node, "ti,tx-internal-delay",
&dp83867->tx_id_delay);
if (ret)
return ret;
- ret = of_property_read_u32(of_node, "ti,fifo_depth",
+ ret = of_property_read_u32(of_node, "ti,fifo-depth",
&dp83867->fifo_depth);
if (ret)
return ret;