summaryrefslogtreecommitdiffstats
path: root/sst49lfxxxc.c
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2007-08-23 16:08:21 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2007-08-23 16:08:21 +0000
commitffec5f3ab794167126c28e7253dbe9d7de676dc2 (patch)
tree1645417f11a24ea1a316a7959246f5c4af75e789 /sst49lfxxxc.c
parentfd37414dbb1996f91b07b08826e637c29c455c37 (diff)
downloadast2050-flashrom-ffec5f3ab794167126c28e7253dbe9d7de676dc2.zip
ast2050-flashrom-ffec5f3ab794167126c28e7253dbe9d7de676dc2.tar.gz
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>
Diffstat (limited to 'sst49lfxxxc.c')
-rw-r--r--sst49lfxxxc.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/sst49lfxxxc.c b/sst49lfxxxc.c
index 8480877..2ca5842 100644
--- a/sst49lfxxxc.c
+++ b/sst49lfxxxc.c
@@ -71,7 +71,7 @@ static __inline__ int write_lockbits_49lfxxxc(volatile uint8_t *bios, int size,
//printf("lockbits at address=0x%08lx is 0x%01x\n", (unsigned long)0xFFc00000 - size + address + 2, *(bios + address + 2) );
*(bios + address + 2) = bits;
- return (0);
+ return 0;
}
static __inline__ int erase_sector_49lfxxxc(volatile uint8_t *bios,
@@ -91,7 +91,7 @@ static __inline__ int erase_sector_49lfxxxc(volatile uint8_t *bios,
}
} while (!(status & STATUS_WSMS));
- return (0);
+ return 0;
}
static __inline__ int write_sector_49lfxxxc(volatile uint8_t *bios,
@@ -124,7 +124,7 @@ static __inline__ int write_sector_49lfxxxc(volatile uint8_t *bios,
} while (!(status & STATUS_WSMS));
}
- return (0);
+ return 0;
}
int probe_49lfxxxc(struct flashchip *flash)
@@ -164,7 +164,8 @@ int erase_49lfxxxc(struct flashchip *flash)
return (-1);
*bios = RESET;
- return (0);
+
+ return 0;
}
int write_49lfxxxc(struct flashchip *flash, uint8_t *buf)
@@ -189,5 +190,6 @@ int write_49lfxxxc(struct flashchip *flash, uint8_t *buf)
printf("\n");
*bios = RESET;
- return (0);
+
+ return 0;
}
OpenPOWER on IntegriCloud