mx8mm_evk: spl: Staticize functions
authorAlifer Moraes <alifer.wsdm@gmail.com>
Tue, 14 Jan 2020 18:55:00 +0000 (15:55 -0300)
committerStefano Babic <sbabic@denx.de>
Mon, 20 Jan 2020 14:38:16 +0000 (15:38 +0100)
Functions spl_dram_init() and power_init_board() are used only in
the scope of this file, so make them static to fix the following sparse
warnings:

board/freescale/imx8mm_evk/spl.c:40:6: warning: no previous prototype
for ‘spl_dram_init’ [-Wmissing-prototypes]

board/freescale/imx8mm_evk/spl.c:85:5: warning: no previous prototype
for ‘power_init_board’ [-Wmissing-prototypes]

Signed-off-by: Alifer Moraes <alifer.wsdm@gmail.com>
board/freescale/imx8mm_evk/spl.c

index 2d08f9a..e28f795 100644 (file)
@@ -37,7 +37,7 @@ int spl_board_boot_device(enum boot_device boot_dev_spl)
        }
 }
 
-void spl_dram_init(void)
+static void spl_dram_init(void)
 {
        ddr_init(&dram_timing);
 }
@@ -82,7 +82,7 @@ int board_early_init_f(void)
        return 0;
 }
 
-int power_init_board(void)
+static int power_init_board(void)
 {
        struct udevice *dev;
        int ret;