diff options
Diffstat (limited to 'util/flashrom/am29f040b.c')
-rw-r--r-- | util/flashrom/am29f040b.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/flashrom/am29f040b.c b/util/flashrom/am29f040b.c index e7f318bfb4..d1c1f223ae 100644 --- a/util/flashrom/am29f040b.c +++ b/util/flashrom/am29f040b.c @@ -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; } |