forgot a semicolon

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1437 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Li-Ta Lo 2004-03-18 20:35:33 +00:00
parent 6f485e6849
commit 52a84d7146
2 changed files with 5 additions and 4 deletions

View File

@ -150,7 +150,7 @@ int verify_flash (struct flashchip * flash, char * buf, int verbose)
}
if (verbose)
printf("\b\b\b\b\b\b\b\b\b\b");
i++
i++;
}
if (verbose)
printf("\n");

View File

@ -58,10 +58,11 @@ static __inline__ int erase_block_49fl004 ( volatile unsigned char * bios ,unsig
return(0);
}
static __inline__ int write_block_49fl004(volatile char * bios,
unsigned char * src,
volatile unsigned char * dst,
unsigned int page_size)
unsigned char * src,
volatile unsigned char * dst,
unsigned int page_size)
{
int i;
volatile char *Temp;