From: Simon Glass Date: Thu, 6 Mar 2025 00:24:55 +0000 (-0700) Subject: x86: Make do_zboot_states() static X-Git-Tag: v2025.07-rc1~18^2~21^2~28 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=299d24eddfeb18a7576187b3010d5462317335e9;p=pandora-u-boot.git x86: Make do_zboot_states() static This function is only called within zboot.c so make the function private. Signed-off-by: Simon Glass --- diff --git a/cmd/x86/zboot.c b/cmd/x86/zboot.c index 94e602b8a5b..3035172352a 100644 --- a/cmd/x86/zboot.c +++ b/cmd/x86/zboot.c @@ -119,8 +119,8 @@ U_BOOT_SUBCMDS(zboot, U_BOOT_CMD_MKENT(dump, 2, 1, do_zboot_dump, "", ""), ) -int do_zboot_states(struct cmd_tbl *cmdtp, int flag, int argc, - char *const argv[], int state_mask) +static int do_zboot_states(struct cmd_tbl *cmdtp, int flag, int argc, + char *const argv[], int state_mask) { int ret = 0;