]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
arm64: Remove duplicated symbols
authorLeo Yan <leo.yan@linaro.org>
Thu, 4 May 2023 07:54:58 +0000 (15:54 +0800)
committerTom Rini <trini@konsulko.com>
Thu, 1 Jun 2023 16:32:03 +0000 (12:32 -0400)
When build U-boot with clang with using commands:

  $ make HOSTCC=clang xenguest_arm64_defconfig
  $ make HOSTCC=clang CROSS_COMPILE=aarch64-linux-gnu- \
CC="clang -target aarch64-linux-gnueabi" -j8

The compiler reports error:

  /tmp/start-acdf31.s:330:1: error: symbol '_start' is already defined
  _start:
  ^

Because the symbol '_start' has been defined twice, one is defined in
arch/arm/cpu/armv8/start.S, another is defined in the header
boot0-linux-kernel-header.h.

To fix building failure, this patch removes the symbol '_start' from
boot0-linux-kernel-header.h.

Signed-off-by: Leo Yan <leo.yan@linaro.org>
arch/arm/include/asm/boot0-linux-kernel-header.h

index c6cd76f32af5ad766b55e29091635b3cad9446d1..c930fea5fd4a986295c66eb84993a4825761efb2 100644 (file)
@@ -31,8 +31,6 @@
        .long   \sym\()_hi32
        .endm
 
-.globl _start
-_start:
        /*
         * DO NOT MODIFY. Image header expected by Linux boot-loaders.
         */