From 9d869c447d660ef99b9db6c94322f7df41eb8e6f Mon Sep 17 00:00:00 2001 From: Edward O'Callaghan Date: Mon, 16 May 2022 11:10:36 +1000 Subject: flashrom.c: Make need_erase() helper static local The need_erase() helper is only used within flashrom.c Change-Id: Ic0946bb109fca2fc18e15eefa11cccea284ded0b Signed-off-by: Edward O'Callaghan Reviewed-on: https://review.coreboot.org/c/flashrom/+/64369 Tested-by: build bot (Jenkins) Reviewed-by: Arthur Heymans Reviewed-by: Thomas Heijligen Reviewed-by: Angel Pons --- flashrom.c | 2 +- include/flash.h | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/flashrom.c b/flashrom.c index e8ed87ee..7f544885 100644 --- a/flashrom.c +++ b/flashrom.c @@ -480,7 +480,7 @@ static int need_erase_gran_bytes(const uint8_t *have, const uint8_t *want, unsig * @gran write granularity (enum, not count) * @return 0 if no erase is needed, 1 otherwise */ -int need_erase(const uint8_t *have, const uint8_t *want, unsigned int len, +static int need_erase(const uint8_t *have, const uint8_t *want, unsigned int len, enum write_granularity gran, const uint8_t erased_value) { int result = 0; diff --git a/include/flash.h b/include/flash.h index 5170ba72..89d57377 100644 --- a/include/flash.h +++ b/include/flash.h @@ -411,7 +411,6 @@ int read_memmapped(struct flashctx *flash, uint8_t *buf, unsigned int start, uns int erase_flash(struct flashctx *flash); int probe_flash(struct registered_master *mst, int startchip, struct flashctx *fill_flash, int force); int verify_range(struct flashctx *flash, const uint8_t *cmpbuf, unsigned int start, unsigned int len); -int need_erase(const uint8_t *have, const uint8_t *want, unsigned int len, enum write_granularity gran, const uint8_t erased_value); void emergency_help_message(void); void print_version(void); void print_buildinfo(void); -- cgit v1.2.3