From: Bin Meng Date: Fri, 21 Dec 2018 15:13:39 +0000 (-0800) Subject: bootm: vxworks: Make do_bootvx_fdt() static X-Git-Tag: v2019.01-rc3~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7ebfb3780cbb608baaffbf6835b642484fa02ba3;p=platform%2Fkernel%2Fu-boot.git bootm: vxworks: Make do_bootvx_fdt() static Change the scope of do_bootvx_fdt() to static since it is only used in common/bootm_os.c. Signed-off-by: Bin Meng --- diff --git a/common/bootm_os.c b/common/bootm_os.c index f302135..da938c5 100644 --- a/common/bootm_os.c +++ b/common/bootm_os.c @@ -260,7 +260,7 @@ static int do_bootm_plan9(int flag, int argc, char * const argv[], #if defined(CONFIG_BOOTM_VXWORKS) && \ (defined(CONFIG_PPC) || defined(CONFIG_ARM)) -void do_bootvx_fdt(bootm_headers_t *images) +static void do_bootvx_fdt(bootm_headers_t *images) { #if defined(CONFIG_OF_LIBFDT) int ret; diff --git a/include/vxworks.h b/include/vxworks.h index 60c0efa..1a29509 100644 --- a/include/vxworks.h +++ b/include/vxworks.h @@ -83,6 +83,5 @@ struct efi_gop_info { int do_bootvx(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); void boot_prep_vxworks(bootm_headers_t *images); void boot_jump_vxworks(bootm_headers_t *images); -void do_bootvx_fdt(bootm_headers_t *images); #endif