From: Marek BehĂșn Date: Thu, 20 May 2021 11:24:13 +0000 (+0200) Subject: ARM: fix LTO for apf27 X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=28d476eada6b49fdbd331171c6a487466e709a66;p=u-boot.git ARM: fix LTO for apf27 When apf27_defconfig is built with LTO, linking complains about undefined reference to `nand_boot`. This is because it is referenced from inline assembly. Make it visible. Signed-off-by: Marek BehĂșn --- diff --git a/drivers/mtd/nand/raw/mxc_nand_spl.c b/drivers/mtd/nand/raw/mxc_nand_spl.c index e1e542519d..2f054b60ed 100644 --- a/drivers/mtd/nand/raw/mxc_nand_spl.c +++ b/drivers/mtd/nand/raw/mxc_nand_spl.c @@ -326,7 +326,7 @@ int nand_spl_load_image(uint32_t from, unsigned int size, void *buf) * configured and available since this code loads the main U-Boot image * from NAND into SDRAM and starts it from there. */ -void nand_boot(void) +__used void nand_boot(void) { __attribute__((noreturn)) void (*uboot)(void);