From 2c03317a4bd69278a48498e99869d1ac2bd531f0 Mon Sep 17 00:00:00 2001 From: Edward O'Callaghan Date: Sun, 26 Feb 2023 16:56:03 +1100 Subject: jedec.c: Rename func to jedec_write_page() Change-Id: I1be83d5974e305bddceaa34b64e982b774ade0d2 Signed-off-by: Edward O'Callaghan Reviewed-on: https://review.coreboot.org/c/flashrom/+/73282 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer Reviewed-by: Thomas Heijligen --- jedec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jedec.c b/jedec.c index f9442ec4..2cdde617 100644 --- a/jedec.c +++ b/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); } -- cgit v1.2.3