From 9ea2be2d2ae2b64591aa0ebd973563800d3e527a Mon Sep 17 00:00:00 2001 From: hailfinger Date: Sun, 10 Oct 2010 16:10:49 +0000 Subject: Simplify calls to inner write functions. No behavioural changes, just equivalence transformations. Signed-off-by: Carl-Daniel Hailfinger Acked-by: Uwe Hermann git-svn-id: https://code.coreboot.org/svn/flashrom/trunk@1209 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- jedec.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'jedec.c') diff --git a/jedec.c b/jedec.c index 7e956e2..6146fc4 100644 --- a/jedec.c +++ b/jedec.c @@ -411,16 +411,11 @@ int write_jedec(struct flashchip *flash, uint8_t *buf) int write_jedec_1(struct flashchip *flash, uint8_t * buf) { - int i; int mask; mask = getaddrmask(flash); - for (i = 0; i < flash->total_size; i++) { - write_sector_jedec_common(flash, buf + i * 1024, i * 1024, 1024, mask); - } - - return 0; + return write_sector_jedec_common(flash, buf, 0, flash->total_size * 1024, mask); } /* erase chip with block_erase() prototype */ -- cgit v1.2.1