flashrom: Fix one dead increment and one dead assignment as found by clang.
authorPeter Stuge <peter@stuge.se>
Mon, 26 Jan 2009 15:19:43 +0000 (15:19 +0000)
committerPeter Stuge <peter@stuge.se>
Mon, 26 Jan 2009 15:19:43 +0000 (15:19 +0000)
Thanks Patrick!

Signed-off-by: Peter Stuge <peter@stuge.se>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3918 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

util/flashrom/ichspi.c
util/flashrom/m29f002.c

index bad2e2781f0a5989130b9b319a8a57b23629f7ff..5de654bf7149721e626646e2682a9da1cc99d6da 100644 (file)
@@ -289,7 +289,6 @@ int program_opcodes(OPCODES * op)
        uint32_t opmenu[2];
 
        /* Program Prefix Opcodes */
-       preop = 0;
        /* 0:7 Prefix Opcode 1 */
        preop = (op->preop[0]);
        /* 8:16 Prefix Opcode 2 */
index a8365873ea66f77bcbc112651ac667cfc6e55394..8afef796ee457287e13c1140cb76297e65a68ff0 100644 (file)
@@ -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;