diff options
author | Tom Rini <trini@konsulko.com> | 2017-05-09 02:14:31 (GMT) |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-05-12 12:37:30 (GMT) |
commit | 63c6f1ce3c243695efc1049591198136348ea9b7 (patch) | |
tree | 50acfdd637e7e6fa1c0c140242a0fb015ca110c5 /drivers | |
parent | 9338d8e76bf17823fb1c5860d49c6b3daadb7e85 (diff) | |
download | u-boot-63c6f1ce3c243695efc1049591198136348ea9b7.tar.xz |
net: eepro100: Fix unused variable warning
The variable i82557_config_cmd is never referenced, drop.
Cc: Joe Hershberger <joe.hershberger@ni.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/eepro100.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/net/eepro100.c b/drivers/net/eepro100.c index 0f350cb..33d9fd6 100644 --- a/drivers/net/eepro100.c +++ b/drivers/net/eepro100.c @@ -207,12 +207,6 @@ static int tx_threshold; * There are so many options that it would be difficult to document * each bit. We mostly use the default or recommended settings. */ -static const char i82557_config_cmd[] = { - 22, 0x08, 0, 0, 0, 0, 0x32, 0x03, 1, /* 1=Use MII 0=Use AUI */ - 0, 0x2E, 0, 0x60, 0, - 0xf2, 0x48, 0, 0x40, 0xf2, 0x80, /* 0x40=Force full-duplex */ - 0x3f, 0x05, -}; static const char i82558_config_cmd[] = { 22, 0x08, 0, 1, 0, 0, 0x22, 0x03, 1, /* 1=Use MII 0=Use AUI */ 0, 0x2E, 0, 0x60, 0x08, 0x88, |