summaryrefslogtreecommitdiff
path: root/util/flashrom/sst39sf020.c
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2007-04-01 19:44:21 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2007-04-01 19:44:21 +0000
commit195237f2e1b42c144cb27fde0a6773b20c8cd01a (patch)
tree66bb1768241122933d135e5efeb84047443011da /util/flashrom/sst39sf020.c
parent1a9c892d58c746aef0cb530481c214e63a6a6871 (diff)
Coding style fixes (trivial).
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2577 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/flashrom/sst39sf020.c')
-rw-r--r--util/flashrom/sst39sf020.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/flashrom/sst39sf020.c b/util/flashrom/sst39sf020.c
index 30433f51b5..9c71659619 100644
--- a/util/flashrom/sst39sf020.c
+++ b/util/flashrom/sst39sf020.c
@@ -50,8 +50,8 @@ static __inline__ int erase_sector_39sf020(volatile uint8_t *bios,
int write_39sf020(struct flashchip *flash, uint8_t *buf)
{
int i;
- int total_size = flash->total_size * 1024, page_size =
- flash->page_size;
+ int total_size = flash->total_size * 1024;
+ int page_size = flash->page_size;
volatile uint8_t *bios = flash->virt_addr;
erase_chip_jedec(flash);