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 --- dmi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dmi.c') diff --git a/dmi.c b/dmi.c index c32a8da1..ae90f7c4 100644 --- a/dmi.c +++ b/dmi.c @@ -250,7 +250,7 @@ static int legacy_decode(uint8_t *buf) return 0; } -int dmi_fill(void) +static int dmi_fill(void) { size_t fp; uint8_t *dmi_mem; @@ -344,7 +344,7 @@ static char *get_dmi_string(const char *string_name) return result; } -int dmi_fill(void) +static int dmi_fill(void) { int i; char *chassis_type; -- cgit v1.2.3