mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-04-18 04:11:31 +00:00
net: Trivial coding style issue with empty for statement
Signed-off-by: Detlev Zundel <dzu@denx.de> Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
This commit is contained in:
parent
e3f2a93362
commit
aba4b69d01
1 changed files with 3 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* (C) Copyright 2001-2004
|
* (C) Copyright 2001-2010
|
||||||
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
||||||
*
|
*
|
||||||
* See file CREDITS for list of people who contributed to this
|
* See file CREDITS for list of people who contributed to this
|
||||||
|
@ -173,7 +173,8 @@ int eth_register(struct eth_device* dev)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
} else {
|
} else {
|
||||||
for (d=eth_devices; d->next!=eth_devices; d=d->next);
|
for (d=eth_devices; d->next!=eth_devices; d=d->next)
|
||||||
|
;
|
||||||
d->next = dev;
|
d->next = dev;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue