9
0
Fork 0

svn_rev_275

This commit is contained in:
Sascha Hauer 2007-07-05 18:01:39 +02:00 committed by Sascha Hauer
parent 0b2b4aad56
commit ace5d5bc2b
1 changed files with 3 additions and 4 deletions

View File

@ -108,15 +108,14 @@ void start_uboot (void)
{
initcall_t *initcall;
int result;
PUTC('S');
PUTC('\n');
/* compiler optimization barrier needed for GCC >= 3.4 */
// __asm__ __volatile__("": : :"memory");
// serial_init(); /* serial communications setup */
for (initcall = __u_boot_initcalls_start; initcall < __u_boot_initcalls_end; initcall++) {
PUTHEX_LL(*initcall);
PUTC('\n');
// PUTHEX_LL(*initcall);
// PUTC('\n');
result = (*initcall)();
if (result)
hang();