Commit 856943d4 authored by Ollie Lho's avatar Ollie Lho
Browse files

Forgot a semicolon

Corresponding to flashrom svn r11 and coreboot v2 svn r1437.
parent f36ad4f1
......@@ -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");
......
......@@ -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;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment