diff options
author | Tom Rini <trini@konsulko.com> | 2017-02-08 16:24:44 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-02-08 16:24:44 -0500 |
commit | 21342d4aed6c77a4aa7a5b2579b3c23e21aea31a (patch) | |
tree | 279c781bdcbe697257ff86714fa0355bcd92fd19 /drivers/net/cpsw-common.c | |
parent | 7582ddce132390fba10822c5977cd1ab532bb1eb (diff) | |
parent | f11a0af713a714ee2efcd810dd81c6dfd59381aa (diff) | |
download | u-boot-midas-21342d4aed6c77a4aa7a5b2579b3c23e21aea31a.tar.gz u-boot-midas-21342d4aed6c77a4aa7a5b2579b3c23e21aea31a.tar.bz2 u-boot-midas-21342d4aed6c77a4aa7a5b2579b3c23e21aea31a.zip |
Merge git://git.denx.de/u-boot-dm
Diffstat (limited to 'drivers/net/cpsw-common.c')
-rw-r--r-- | drivers/net/cpsw-common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/cpsw-common.c b/drivers/net/cpsw-common.c index 607eb4563c..55f56d9555 100644 --- a/drivers/net/cpsw-common.c +++ b/drivers/net/cpsw-common.c @@ -20,7 +20,7 @@ static int davinci_emac_3517_get_macid(struct udevice *dev, u16 offset, int slave, u8 *mac_addr) { void *fdt = (void *)gd->fdt_blob; - int node = dev->of_offset; + int node = dev_of_offset(dev); u32 macid_lsb; u32 macid_msb; fdt32_t gmii = 0; @@ -60,7 +60,7 @@ static int cpsw_am33xx_cm_get_macid(struct udevice *dev, u16 offset, int slave, u8 *mac_addr) { void *fdt = (void *)gd->fdt_blob; - int node = dev->of_offset; + int node = dev_of_offset(dev); u32 macid_lo; u32 macid_hi; fdt32_t gmii = 0; |