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:
parent
729d5971d2
commit
609305fa76
|
@ -37,7 +37,7 @@ static struct {
|
|||
|
||||
static int tables_good = 0;
|
||||
|
||||
int coreboot_module_redraw(WINDOW *win)
|
||||
static int coreboot_module_redraw(WINDOW *win)
|
||||
{
|
||||
int row = 2;
|
||||
int i;
|
||||
|
|
|
@ -32,7 +32,7 @@ static struct {
|
|||
|
||||
static int tables_good = 0;
|
||||
|
||||
int multiboot_module_redraw(WINDOW *win)
|
||||
static int multiboot_module_redraw(WINDOW *win)
|
||||
{
|
||||
int row = 2;
|
||||
int i;
|
||||
|
|
Loading…
Reference in New Issue