diff options
Diffstat (limited to 'net/eth.c')
| -rw-r--r-- | net/eth.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -433,7 +433,7 @@ int eth_init(bd_t *bis)  	do {  		debug ("Trying %s\n", eth_current->name); -		if (!eth_current->init(eth_current,bis)) { +		if (eth_current->init(eth_current,bis) >= 0) {  			eth_current->state = ETH_STATE_ACTIVE;  			return 0; |