payloads/coreinfo: Make internal functions static

These functions are only used in the files they are defined in, so they
can be made static.

Change-Id: Ic7f78912803cbdd1cb3a75f7f69f526739dab6e7
Signed-off-by: Jacob Garber <jgarber1@ualberta.ca>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/33865
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
This commit is contained in:
Jacob Garber 2019-06-28 11:03:31 -06:00 committed by Martin Roth
parent 729d5971d2
commit 609305fa76
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ static struct {
static int tables_good = 0; static int tables_good = 0;
int coreboot_module_redraw(WINDOW *win) static int coreboot_module_redraw(WINDOW *win)
{ {
int row = 2; int row = 2;
int i; int i;

View File

@ -32,7 +32,7 @@ static struct {
static int tables_good = 0; static int tables_good = 0;
int multiboot_module_redraw(WINDOW *win) static int multiboot_module_redraw(WINDOW *win)
{ {
int row = 2; int row = 2;
int i; int i;