From beeb8bc925bef6973e1c9fa6c4fd26a4113a1777 Mon Sep 17 00:00:00 2001 From: Jacob Garber Date: Fri, 21 Jun 2019 15:24:17 -0600 Subject: tree: Make internal functions static None of these functions are used outside of the files they are defined in, so make them all static. Change-Id: Ie9cbe12d289bcedacf2f1bf483ae64ef8039ccc1 Signed-off-by: Jacob Garber Reviewed-on: https://review.coreboot.org/c/flashrom/+/33667 Tested-by: build bot (Jenkins) Reviewed-by: HAOUAS Elyes Reviewed-by: Nico Huber --- it85spi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'it85spi.c') diff --git a/it85spi.c b/it85spi.c index e47cabbdb..1d1ecad67 100644 --- a/it85spi.c +++ b/it85spi.c @@ -106,7 +106,7 @@ static int wait_for(const unsigned int mask, const unsigned int expected_value, /* IT8502 employs a scratch RAM when flash is being updated. Call the following * two functions before/after flash erase/program. */ -void it85xx_enter_scratch_rom(void) +static void it85xx_enter_scratch_rom(void) { int ret, tries; @@ -163,7 +163,7 @@ void it85xx_enter_scratch_rom(void) } } -void it85xx_exit_scratch_rom(void) +static void it85xx_exit_scratch_rom(void) { #if 0 int ret; -- cgit v1.2.3