diff options
author | Lokesh Vutla <lokeshvutla@ti.com> | 2017-06-21 14:12:04 +0530 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-06-22 11:14:47 -0400 |
commit | b88ff4f8c9ef0279f82bca0a83ed860b654f0f8d (patch) | |
tree | 641abab158157dc8350661a7a164b5afa3e6b399 /drivers/net/ethernet/ti | |
parent | 76da0704507bbc51875013f6557877ab308cfd0a (diff) | |
download | talos-op-linux-b88ff4f8c9ef0279f82bca0a83ed860b654f0f8d.tar.gz talos-op-linux-b88ff4f8c9ef0279f82bca0a83ed860b654f0f8d.zip |
drivers: net: cpsw-common: Fix reading of mac address for am43 SoCs
cpsw driver tries to get macid for am43xx SoCs using the compatible
ti,am4372. But not all variants of am43x uses this complatible like
epos evm uses ti,am438x. So use a generic compatible ti,am43 to get
macid for all am43 based platforms.
Reviewed-by: Dave Gerlach <d-gerlach@ti.com>
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/ti')
-rw-r--r-- | drivers/net/ethernet/ti/cpsw-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/ti/cpsw-common.c b/drivers/net/ethernet/ti/cpsw-common.c index 1562ab4151e1..56ba411421f0 100644 --- a/drivers/net/ethernet/ti/cpsw-common.c +++ b/drivers/net/ethernet/ti/cpsw-common.c @@ -90,7 +90,7 @@ int ti_cm_get_macid(struct device *dev, int slave, u8 *mac_addr) if (of_device_is_compatible(dev->of_node, "ti,dm816-emac")) return cpsw_am33xx_cm_get_macid(dev, 0x30, slave, mac_addr); - if (of_machine_is_compatible("ti,am4372")) + if (of_machine_is_compatible("ti,am43")) return cpsw_am33xx_cm_get_macid(dev, 0x630, slave, mac_addr); if (of_machine_is_compatible("ti,dra7")) |