mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
Remove useless print message at apollon
Remove useless print message at apollon Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
This commit is contained in:
parent
98874ff329
commit
47042b363e
1 changed files with 2 additions and 6 deletions
|
@ -153,10 +153,8 @@ void ether_init(void)
|
|||
do {
|
||||
__raw_writew(0x1, LAN_RESET_REGISTER);
|
||||
udelay(100);
|
||||
if (cnt == 0) {
|
||||
printf("1. eth reset err\n");
|
||||
if (cnt == 0)
|
||||
goto eth_reset_err_out;
|
||||
}
|
||||
--cnt;
|
||||
} while (__raw_readw(LAN_RESET_REGISTER) != 0x1);
|
||||
|
||||
|
@ -165,10 +163,8 @@ void ether_init(void)
|
|||
do {
|
||||
__raw_writew(0x0, LAN_RESET_REGISTER);
|
||||
udelay(100);
|
||||
if (cnt == 0) {
|
||||
printf("2. eth reset err\n");
|
||||
if (cnt == 0)
|
||||
goto eth_reset_err_out;
|
||||
}
|
||||
--cnt;
|
||||
} while (__raw_readw(LAN_RESET_REGISTER) != 0x0000);
|
||||
udelay(1000);
|
||||
|
|
Loading…
Reference in a new issue