diff options
Diffstat (limited to 'board/eNET')
| -rw-r--r-- | board/eNET/eNET.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/board/eNET/eNET.c b/board/eNET/eNET.c index 57dd6359e..27dabaa96 100644 --- a/board/eNET/eNET.c +++ b/board/eNET/eNET.c @@ -51,9 +51,9 @@ void init_sc520_enet (void)  	/* wait at least one millisecond */  	asm("movl	$0x2000,%%ecx\n" -	    "wait_loop:	pushl %%ecx\n" +	    "0:	pushl %%ecx\n"  	    "popl	%%ecx\n" -	    "loop wait_loop\n": : : "ecx"); +	    "loop 0b\n": : : "ecx");  	/* turn on the SDRAM write buffer */  	write_mmcr_byte(SC520_DBCTL, 0x11); |