summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/cpu/mpc8260/ether_fcc.c
diff options
context:
space:
mode:
authorJoe Hershberger <joe.hershberger@ni.com>2015-03-22 17:09:00 -0500
committerSimon Glass <sjg@chromium.org>2015-04-18 11:11:10 -0600
commit8b2c9a7157c3c737b3bdf640796509eef0a58c52 (patch)
treef50951a973cf76471e0199bb01b5d69b245c88a6 /arch/powerpc/cpu/mpc8260/ether_fcc.c
parent0eb25b619699270a8af95c2f76791fd6c4b52972 (diff)
downloadblackbird-obmc-uboot-8b2c9a7157c3c737b3bdf640796509eef0a58c52.tar.gz
blackbird-obmc-uboot-8b2c9a7157c3c737b3bdf640796509eef0a58c52.zip
net: Provide a function to get the current MAC address
The current implementation exposes the eth_device struct to code that needs to access the MAC address. Add a wrapper function for this to abstract away the pointer for this operation. Signed-off-by: Joe Hershberger <joe.hershberger@ni.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/powerpc/cpu/mpc8260/ether_fcc.c')
-rw-r--r--arch/powerpc/cpu/mpc8260/ether_fcc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/cpu/mpc8260/ether_fcc.c b/arch/powerpc/cpu/mpc8260/ether_fcc.c
index f9f15b59e5..f777ba14cc 100644
--- a/arch/powerpc/cpu/mpc8260/ether_fcc.c
+++ b/arch/powerpc/cpu/mpc8260/ether_fcc.c
@@ -299,7 +299,7 @@ static int fec_init(struct eth_device* dev, bd_t *bis)
* it unique by setting a few bits in the upper byte of the
* non-static part of the address.
*/
-#define ea eth_get_dev()->enetaddr
+#define ea eth_get_ethaddr()
pram_ptr->fen_paddrh = (ea[5] << 8) + ea[4];
pram_ptr->fen_paddrm = (ea[3] << 8) + ea[2];
pram_ptr->fen_paddrl = (ea[1] << 8) + ea[0];
OpenPOWER on IntegriCloud