1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-01 22:21:16 +02:00

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 <jgarber1@ualberta.ca>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/33667
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
Jacob Garber
2019-06-21 15:24:17 -06:00
committed by Nico Huber
parent cb44eb7dad
commit beeb8bc925
13 changed files with 29 additions and 30 deletions

View File

@ -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;