]> git.dujemihanovic.xyz Git - u-boot.git/commit
x86: coreboot: Avoid a declaration after a label
authorSimon Glass <sjg@chromium.org>
Thu, 31 Aug 2023 17:20:53 +0000 (11:20 -0600)
committerBin Meng <bmeng@tinylab.org>
Thu, 21 Sep 2023 22:03:46 +0000 (06:03 +0800)
commit0879de0e8b110da1d35db45f086c60cf777f2732
treefa176ab10db15b07ae2decb67450cc7141dd930a
parent48bf738e3622a94b96a57055ff0f6466f5830bd4
x86: coreboot: Avoid a declaration after a label

Declare the global_data pointer at the top of the file, to avoid an
error:

   arch/x86/include/asm/global_data.h:143:35: error: a label can
      only be part of a statement and a declaration is not a statement
   board/coreboot/coreboot/coreboot.c:60:2: note: in expansion of macro
      â€˜DECLARE_GLOBAL_DATA_PTR’

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Mike Frysinger <vapier@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
board/coreboot/coreboot/coreboot.c