mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-26 22:52:34 +02:00
jedec.c: Rename func to jedec_write_page()
Change-Id: I1be83d5974e305bddceaa34b64e982b774ade0d2 Signed-off-by: Edward O'Callaghan <quasisec@google.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/73282 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-by: Thomas Heijligen <src@posteo.de>
This commit is contained in:
parent
4ea3f6cbf8
commit
2c03317a4b
4
jedec.c
4
jedec.c
@ -396,7 +396,7 @@ int write_jedec_1(struct flashctx *flash, const uint8_t *src, unsigned int start
|
||||
return failed;
|
||||
}
|
||||
|
||||
static int write_page_write_jedec_common(struct flashctx *flash, const uint8_t *src,
|
||||
static int jedec_write_page(struct flashctx *flash, const uint8_t *src,
|
||||
unsigned int start, unsigned int page_size)
|
||||
{
|
||||
int tries = 0, failed;
|
||||
@ -471,7 +471,7 @@ int write_jedec(struct flashctx *flash, const uint8_t *buf, unsigned int start,
|
||||
/* Length of bytes in the range in this page. */
|
||||
lenhere = min(start + len, (i + 1) * page_size) - starthere;
|
||||
|
||||
if (write_page_write_jedec_common(flash, buf + starthere - start, starthere, lenhere))
|
||||
if (jedec_write_page(flash, buf + starthere - start, starthere, lenhere))
|
||||
return 1;
|
||||
update_progress(flash, FLASHROM_PROGRESS_WRITE, i + 1, nwrites + 1);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user