diff options
author | Jeroen Hofstee <jeroen@myspectrum.nl> | 2014-10-08 22:57:36 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-10-25 07:02:01 -0400 |
commit | 783a91fdbbf1d1d4530ca8c74d9ebae942b21378 (patch) | |
tree | d0699de08ef28ca5c0873ada99d56a003e342416 /net | |
parent | 45f08d359f7fc7892486f73475003a2103e25421 (diff) | |
download | u-boot-imx-783a91fdbbf1d1d4530ca8c74d9ebae942b21378.zip u-boot-imx-783a91fdbbf1d1d4530ca8c74d9ebae942b21378.tar.gz u-boot-imx-783a91fdbbf1d1d4530ca8c74d9ebae942b21378.tar.bz2 |
eth: make eth_address_set static
Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
Diffstat (limited to 'net')
-rw-r--r-- | net/eth.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -153,7 +153,7 @@ static void eth_current_changed(void) setenv("ethact", NULL); } -int eth_address_set(unsigned char *addr) +static int eth_address_set(unsigned char *addr) { return memcmp(addr, "\0\0\0\0\0\0", 6); } |