1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-02 22:43:17 +02:00

Cosmetic fixes

Corresponding to flashrom svn r130 and coreboot v2 svn r2748.

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
This commit is contained in:
Uwe Hermann
2007-08-23 16:08:21 +00:00
parent fd37414dbb
commit ffec5f3ab7
20 changed files with 120 additions and 115 deletions

View File

@ -41,7 +41,7 @@ static __inline__ int erase_sector_29f040b(volatile uint8_t *bios,
/* wait for Toggle bit ready */
toggle_ready_jedec(bios + address);
return (0);
return 0;
}
static __inline__ int write_sector_29f040b(volatile uint8_t *bios,
@ -68,7 +68,7 @@ static __inline__ int write_sector_29f040b(volatile uint8_t *bios,
printf("\b\b\b\b\b\b\b\b\b\b");
}
return (0);
return 0;
}
int probe_29f040b(struct flashchip *flash)
@ -108,7 +108,7 @@ int erase_29f040b(struct flashchip *flash)
myusec_delay(10);
toggle_ready_jedec(bios);
return (0);
return 0;
}
int write_29f040b(struct flashchip *flash, uint8_t *buf)
@ -131,5 +131,5 @@ int write_29f040b(struct flashchip *flash, uint8_t *buf)
}
printf("\n");
return (0);
return 0;
}