summaryrefslogtreecommitdiffstats
path: root/src/mainboard/google/peach_pit/romstage.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/peach_pit/romstage.c')
-rw-r--r--src/mainboard/google/peach_pit/romstage.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mainboard/google/peach_pit/romstage.c b/src/mainboard/google/peach_pit/romstage.c
index d99db809efd4..53fdfbacd40c 100644
--- a/src/mainboard/google/peach_pit/romstage.c
+++ b/src/mainboard/google/peach_pit/romstage.c
@@ -129,13 +129,13 @@ static unsigned long primitive_mem_test(void)
unsigned long *l = (void *)0x40000000;
int bad = 0;
unsigned long i;
- for(i = 0; i < 256*1048576; i++){
+ for (i = 0; i < 256*1048576; i++){
if (! (i%1048576))
printk(BIOS_SPEW, "%lu ...", i);
l[i] = 0xffffffff - i;
}
- for(i = 0; i < 256*1048576; i++){
+ for (i = 0; i < 256*1048576; i++){
if (! (i%1048576))
printk(BIOS_SPEW, "%lu ...", i);
if (l[i] != (0xffffffff - i)){
@@ -177,7 +177,7 @@ static void simple_spi_test(void)
}
- for(i = 0; i < amt; i += 4){
+ for (i = 0; i < amt; i += 4){
if (rdev_readat(boot_dev, &in, i, 4) < 4) {
printk(BIOS_SPEW, "simple_spi_test fails at %d\n", i);
return;