mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-01 22:21:16 +02:00
Fix one dead increment and one dead assignment as found by clang
Thanks Patrick! Corresponding to flashrom svn r410 and coreboot v2 svn r3918. Signed-off-by: Peter Stuge <peter@stuge.se> Acked-by: Peter Stuge <peter@stuge.se>
This commit is contained in:
@ -77,7 +77,7 @@ int write_m29f002t(struct flashchip *flash, uint8_t *buf) {
|
||||
do_block(bios, buf, i++, 0x30000, 32*1024);
|
||||
do_block(bios, buf, i++, 0x38000, 8*1024);
|
||||
do_block(bios, buf, i++, 0x3a000, 8*1024);
|
||||
do_block(bios, buf, i++, 0x3c000, 16*1024);
|
||||
do_block(bios, buf, i, 0x3c000, 16*1024);
|
||||
|
||||
printf("\n");
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user