diff options
Diffstat (limited to 'util/flashrom/mx29f002.c')
-rw-r--r-- | util/flashrom/mx29f002.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/flashrom/mx29f002.c b/util/flashrom/mx29f002.c index 31e924adbd..ac363efd65 100644 --- a/util/flashrom/mx29f002.c +++ b/util/flashrom/mx29f002.c @@ -79,7 +79,7 @@ int erase_29f002(struct flashchip *flash) *(bios + 0x3bfff) = 0x30; #endif - return (0); + return 0; } int write_29f002(struct flashchip *flash, uint8_t *buf) @@ -113,5 +113,5 @@ int write_29f002(struct flashchip *flash, uint8_t *buf) #endif printf("\n"); - return (0); + return 0; } |