Blackfin: tighten up post memory coding style

No functional changes here; just cleanup code style a bit.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
Mike Frysinger 2008-04-09 02:31:29 -04:00
parent 0649908f92
commit a750d038f2

View File

@ -119,7 +119,8 @@ void post_out_buff(char *buff)
{ {
int i = 0; int i = 0;
for (i = 0; i < 0x80000; i++) ; for (i = 0; i < 0x80000; i++)
;
i = 0; i = 0;
while ((buff[i] != '\0') && (i != 100)) { while ((buff[i] != '\0') && (i != 100)) {
while (!(*pUART_LSR & 0x20)) ; while (!(*pUART_LSR & 0x20)) ;
@ -127,7 +128,8 @@ void post_out_buff(char *buff)
SSYNC(); SSYNC();
i++; i++;
} }
for (i = 0; i < 0x80000; i++) ; for (i = 0; i < 0x80000; i++)
;
} }
/* Using sw10-PF5 as the hotkey */ /* Using sw10-PF5 as the hotkey */
@ -150,9 +152,8 @@ int post_key_pressed(void)
value = 0; value = 0;
goto key_pressed; goto key_pressed;
} }
if (value != 0) { if (value != 0)
goto key_pressed; goto key_pressed;
}
for (n = 0; n < KEY_DELAY; n++) for (n = 0; n < KEY_DELAY; n++)
asm("nop"); asm("nop");
} }
@ -164,9 +165,8 @@ int post_key_pressed(void)
value = 0; value = 0;
goto key_pressed; goto key_pressed;
} }
if (value != 0) { if (value != 0)
goto key_pressed; goto key_pressed;
}
for (n = 0; n < KEY_DELAY; n++) for (n = 0; n < KEY_DELAY; n++)
asm("nop"); asm("nop");
} }
@ -178,9 +178,8 @@ int post_key_pressed(void)
value = 0; value = 0;
goto key_pressed; goto key_pressed;
} }
if (value != 0) { if (value != 0)
goto key_pressed; goto key_pressed;
}
for (n = 0; n < KEY_DELAY; n++) for (n = 0; n < KEY_DELAY; n++)
asm("nop"); asm("nop");
} }