mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 10:39:08 +00:00
* Patch by Richard Woodruff, 19 June 03:
- Fixed smc91c111 driver to sync with the u-boot environment (driver/smc91c111.c). - Added eth_init error return check in NetLoop (net/net.c).
This commit is contained in:
parent
6dd652fa4d
commit
0b97ab144f
4 changed files with 101 additions and 11 deletions
|
@ -251,7 +251,8 @@ NetLoop(proto_t protocol)
|
|||
}
|
||||
|
||||
eth_halt();
|
||||
eth_init(bd);
|
||||
if(eth_init(bd) < 0)
|
||||
return(-1);
|
||||
|
||||
restart:
|
||||
#ifdef CONFIG_NET_MULTI
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue