From: Jonathan Cameron <Jonathan.Cameron@Huawei.com>
To: kernel test robot <lkp@intel.com>
Cc: <llvm@lists.linux.dev>, <kbuild-all@lists.01.org>,
<linux-arm-kernel@lists.infradead.org>, <arm@kernel.org>,
Arnd Bergmann <arnd@arndb.de>
Subject: Re: [soc:arm/soc 6/8] arch/arm/mach-pxa/include/mach/uncompress.h:62:6: error: expected expression
Date: Tue, 1 Mar 2022 12:14:34 +0000 [thread overview]
Message-ID: <20220301121434.00003287@Huawei.com> (raw)
In-Reply-To: <202203010702.6TRDNN1H-lkp@intel.com>
On Tue, 1 Mar 2022 07:33:39 +0800
kernel test robot <lkp@intel.com> wrote:
> tree: https://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git arm/soc
> head: e6e6479c27aa22d11ff7109125dd5ec9ef276de8
> commit: 28f74201e37ccf3063e359bfe346b09400af9bab [6/8] ARM: pxa: remove Intel Imote2 and Stargate 2 boards
> config: arm-colibri_pxa300_defconfig (https://download.01.org/0day-ci/archive/20220301/202203010702.6TRDNN1H-lkp@intel.com/config)
> compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project d271fc04d5b97b12e6b797c6067d3c96a8d7470e)
> reproduce (this is a W=1 build):
> wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
> chmod +x ~/bin/make.cross
> # install arm cross compiling tool for clang build
> # apt-get install binutils-arm-linux-gnueabi
> # https://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git/commit/?id=28f74201e37ccf3063e359bfe346b09400af9bab
> git remote add soc https://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
> git fetch --no-tags soc arm/soc
> git checkout 28f74201e37ccf3063e359bfe346b09400af9bab
> # save the config file to linux build tree
> mkdir build_dir
> COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=arm SHELL=/bin/bash
>
> If you fix the issue, kindly add following tag as appropriate
> Reported-by: kernel test robot <lkp@intel.com>
Sorry!
>
> All errors (new ones prefixed by >>):
>
> In file included from arch/arm/boot/compressed/misc.c:29:
> >> arch/arm/mach-pxa/include/mach/uncompress.h:62:6: error: expected expression
> || machine_is_cm_x300() || machine_is_balloon3())
I messed up a rebase so there is a stray || on the line above this
Arnd, new version or are you fine to tidy that up?
Thanks,
Jonathan
> ^
> arch/arm/boot/compressed/misc.c:126:17: warning: no previous prototype for function '__div0' [-Wmissing-prototypes]
> asmlinkage void __div0(void)
> ^
> arch/arm/boot/compressed/misc.c:126:12: note: declare 'static' if the function is not intended to be used outside of this translation unit
> asmlinkage void __div0(void)
> ^
> static
> arch/arm/boot/compressed/misc.c:133:6: warning: no previous prototype for function '__stack_chk_fail' [-Wmissing-prototypes]
> void __stack_chk_fail(void)
> ^
> arch/arm/boot/compressed/misc.c:133:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
> void __stack_chk_fail(void)
> ^
> static
> arch/arm/boot/compressed/misc.c:142:1: warning: no previous prototype for function 'decompress_kernel' [-Wmissing-prototypes]
> decompress_kernel(unsigned long output_start, unsigned long free_mem_ptr_p,
> ^
> arch/arm/boot/compressed/misc.c:141:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
> void
> ^
> static
> arch/arm/boot/compressed/misc.c:164:6: warning: no previous prototype for function 'fortify_panic' [-Wmissing-prototypes]
> void fortify_panic(const char *name)
> ^
> arch/arm/boot/compressed/misc.c:164:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
> void fortify_panic(const char *name)
> ^
> static
> 4 warnings and 1 error generated.
>
>
> vim +62 arch/arm/mach-pxa/include/mach/uncompress.h
>
> ^1da177e4c3f41 include/asm-arm/arch-pxa/uncompress.h Linus Torvalds 2005-04-16 53
> 6d3dfe4a314147 include/asm-arm/arch-pxa/uncompress.h Eric Miao 2008-06-02 54 static inline void arch_decomp_setup(void)
> 6d3dfe4a314147 include/asm-arm/arch-pxa/uncompress.h Eric Miao 2008-06-02 55 {
> 2a8ac187e03027 arch/arm/mach-pxa/include/mach/uncompress.h Jonathan Cameron 2010-03-08 56 /* initialize to default */
> 2a8ac187e03027 arch/arm/mach-pxa/include/mach/uncompress.h Jonathan Cameron 2010-03-08 57 uart_base = FFUART_BASE;
> 2a8ac187e03027 arch/arm/mach-pxa/include/mach/uncompress.h Jonathan Cameron 2010-03-08 58 uart_shift = 2;
> 2a8ac187e03027 arch/arm/mach-pxa/include/mach/uncompress.h Jonathan Cameron 2010-03-08 59 uart_is_pxa = 1;
> 2a8ac187e03027 arch/arm/mach-pxa/include/mach/uncompress.h Jonathan Cameron 2010-03-08 60
> 28f74201e37ccf arch/arm/mach-pxa/include/mach/uncompress.h Jonathan Cameron 2022-02-27 61 if (machine_is_littleton() || machine_is_csb726() ||
> 2a23ec3679d84a arch/arm/mach-pxa/include/mach/uncompress.h Jonathan McDowell 2009-07-04 @62 || machine_is_cm_x300() || machine_is_balloon3())
>
> :::::: The code at line 62 was first introduced by commit
> :::::: 2a23ec3679d84ac243add761fa3d3872cf6dcb11 [ARM] pxa: balloon3 (http://balloonboard.org/) base machine support
>
> :::::: TO: Jonathan McDowell <noodles@earth.li>
> :::::: CC: Eric Miao <eric.y.miao@gmail.com>
>
> ---
> 0-DAY CI Kernel Test Service, Intel Corporation
> https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
WARNING: multiple messages have this Message-ID (diff)
From: Jonathan Cameron <Jonathan.Cameron@Huawei.com>
To: kernel test robot <lkp@intel.com>
Cc: <llvm@lists.linux.dev>, <kbuild-all@lists.01.org>,
<linux-arm-kernel@lists.infradead.org>, <arm@kernel.org>,
Arnd Bergmann <arnd@arndb.de>
Subject: Re: [soc:arm/soc 6/8] arch/arm/mach-pxa/include/mach/uncompress.h:62:6: error: expected expression
Date: Tue, 1 Mar 2022 12:14:34 +0000 [thread overview]
Message-ID: <20220301121434.00003287@Huawei.com> (raw)
In-Reply-To: <202203010702.6TRDNN1H-lkp@intel.com>
On Tue, 1 Mar 2022 07:33:39 +0800
kernel test robot <lkp@intel.com> wrote:
> tree: https://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git arm/soc
> head: e6e6479c27aa22d11ff7109125dd5ec9ef276de8
> commit: 28f74201e37ccf3063e359bfe346b09400af9bab [6/8] ARM: pxa: remove Intel Imote2 and Stargate 2 boards
> config: arm-colibri_pxa300_defconfig (https://download.01.org/0day-ci/archive/20220301/202203010702.6TRDNN1H-lkp@intel.com/config)
> compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project d271fc04d5b97b12e6b797c6067d3c96a8d7470e)
> reproduce (this is a W=1 build):
> wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
> chmod +x ~/bin/make.cross
> # install arm cross compiling tool for clang build
> # apt-get install binutils-arm-linux-gnueabi
> # https://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git/commit/?id=28f74201e37ccf3063e359bfe346b09400af9bab
> git remote add soc https://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
> git fetch --no-tags soc arm/soc
> git checkout 28f74201e37ccf3063e359bfe346b09400af9bab
> # save the config file to linux build tree
> mkdir build_dir
> COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=arm SHELL=/bin/bash
>
> If you fix the issue, kindly add following tag as appropriate
> Reported-by: kernel test robot <lkp@intel.com>
Sorry!
>
> All errors (new ones prefixed by >>):
>
> In file included from arch/arm/boot/compressed/misc.c:29:
> >> arch/arm/mach-pxa/include/mach/uncompress.h:62:6: error: expected expression
> || machine_is_cm_x300() || machine_is_balloon3())
I messed up a rebase so there is a stray || on the line above this
Arnd, new version or are you fine to tidy that up?
Thanks,
Jonathan
> ^
> arch/arm/boot/compressed/misc.c:126:17: warning: no previous prototype for function '__div0' [-Wmissing-prototypes]
> asmlinkage void __div0(void)
> ^
> arch/arm/boot/compressed/misc.c:126:12: note: declare 'static' if the function is not intended to be used outside of this translation unit
> asmlinkage void __div0(void)
> ^
> static
> arch/arm/boot/compressed/misc.c:133:6: warning: no previous prototype for function '__stack_chk_fail' [-Wmissing-prototypes]
> void __stack_chk_fail(void)
> ^
> arch/arm/boot/compressed/misc.c:133:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
> void __stack_chk_fail(void)
> ^
> static
> arch/arm/boot/compressed/misc.c:142:1: warning: no previous prototype for function 'decompress_kernel' [-Wmissing-prototypes]
> decompress_kernel(unsigned long output_start, unsigned long free_mem_ptr_p,
> ^
> arch/arm/boot/compressed/misc.c:141:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
> void
> ^
> static
> arch/arm/boot/compressed/misc.c:164:6: warning: no previous prototype for function 'fortify_panic' [-Wmissing-prototypes]
> void fortify_panic(const char *name)
> ^
> arch/arm/boot/compressed/misc.c:164:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
> void fortify_panic(const char *name)
> ^
> static
> 4 warnings and 1 error generated.
>
>
> vim +62 arch/arm/mach-pxa/include/mach/uncompress.h
>
> ^1da177e4c3f41 include/asm-arm/arch-pxa/uncompress.h Linus Torvalds 2005-04-16 53
> 6d3dfe4a314147 include/asm-arm/arch-pxa/uncompress.h Eric Miao 2008-06-02 54 static inline void arch_decomp_setup(void)
> 6d3dfe4a314147 include/asm-arm/arch-pxa/uncompress.h Eric Miao 2008-06-02 55 {
> 2a8ac187e03027 arch/arm/mach-pxa/include/mach/uncompress.h Jonathan Cameron 2010-03-08 56 /* initialize to default */
> 2a8ac187e03027 arch/arm/mach-pxa/include/mach/uncompress.h Jonathan Cameron 2010-03-08 57 uart_base = FFUART_BASE;
> 2a8ac187e03027 arch/arm/mach-pxa/include/mach/uncompress.h Jonathan Cameron 2010-03-08 58 uart_shift = 2;
> 2a8ac187e03027 arch/arm/mach-pxa/include/mach/uncompress.h Jonathan Cameron 2010-03-08 59 uart_is_pxa = 1;
> 2a8ac187e03027 arch/arm/mach-pxa/include/mach/uncompress.h Jonathan Cameron 2010-03-08 60
> 28f74201e37ccf arch/arm/mach-pxa/include/mach/uncompress.h Jonathan Cameron 2022-02-27 61 if (machine_is_littleton() || machine_is_csb726() ||
> 2a23ec3679d84a arch/arm/mach-pxa/include/mach/uncompress.h Jonathan McDowell 2009-07-04 @62 || machine_is_cm_x300() || machine_is_balloon3())
>
> :::::: The code at line 62 was first introduced by commit
> :::::: 2a23ec3679d84ac243add761fa3d3872cf6dcb11 [ARM] pxa: balloon3 (http://balloonboard.org/) base machine support
>
> :::::: TO: Jonathan McDowell <noodles@earth.li>
> :::::: CC: Eric Miao <eric.y.miao@gmail.com>
>
> ---
> 0-DAY CI Kernel Test Service, Intel Corporation
> https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
WARNING: multiple messages have this Message-ID (diff)
From: Jonathan Cameron <Jonathan.Cameron@Huawei.com>
To: kbuild-all@lists.01.org
Subject: Re: [soc:arm/soc 6/8] arch/arm/mach-pxa/include/mach/uncompress.h:62:6: error: expected expression
Date: Tue, 01 Mar 2022 12:14:34 +0000 [thread overview]
Message-ID: <20220301121434.00003287@Huawei.com> (raw)
In-Reply-To: <202203010702.6TRDNN1H-lkp@intel.com>
[-- Attachment #1: Type: text/plain, Size: 5255 bytes --]
On Tue, 1 Mar 2022 07:33:39 +0800
kernel test robot <lkp@intel.com> wrote:
> tree: https://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git arm/soc
> head: e6e6479c27aa22d11ff7109125dd5ec9ef276de8
> commit: 28f74201e37ccf3063e359bfe346b09400af9bab [6/8] ARM: pxa: remove Intel Imote2 and Stargate 2 boards
> config: arm-colibri_pxa300_defconfig (https://download.01.org/0day-ci/archive/20220301/202203010702.6TRDNN1H-lkp(a)intel.com/config)
> compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project d271fc04d5b97b12e6b797c6067d3c96a8d7470e)
> reproduce (this is a W=1 build):
> wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
> chmod +x ~/bin/make.cross
> # install arm cross compiling tool for clang build
> # apt-get install binutils-arm-linux-gnueabi
> # https://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git/commit/?id=28f74201e37ccf3063e359bfe346b09400af9bab
> git remote add soc https://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
> git fetch --no-tags soc arm/soc
> git checkout 28f74201e37ccf3063e359bfe346b09400af9bab
> # save the config file to linux build tree
> mkdir build_dir
> COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=arm SHELL=/bin/bash
>
> If you fix the issue, kindly add following tag as appropriate
> Reported-by: kernel test robot <lkp@intel.com>
Sorry!
>
> All errors (new ones prefixed by >>):
>
> In file included from arch/arm/boot/compressed/misc.c:29:
> >> arch/arm/mach-pxa/include/mach/uncompress.h:62:6: error: expected expression
> || machine_is_cm_x300() || machine_is_balloon3())
I messed up a rebase so there is a stray || on the line above this
Arnd, new version or are you fine to tidy that up?
Thanks,
Jonathan
> ^
> arch/arm/boot/compressed/misc.c:126:17: warning: no previous prototype for function '__div0' [-Wmissing-prototypes]
> asmlinkage void __div0(void)
> ^
> arch/arm/boot/compressed/misc.c:126:12: note: declare 'static' if the function is not intended to be used outside of this translation unit
> asmlinkage void __div0(void)
> ^
> static
> arch/arm/boot/compressed/misc.c:133:6: warning: no previous prototype for function '__stack_chk_fail' [-Wmissing-prototypes]
> void __stack_chk_fail(void)
> ^
> arch/arm/boot/compressed/misc.c:133:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
> void __stack_chk_fail(void)
> ^
> static
> arch/arm/boot/compressed/misc.c:142:1: warning: no previous prototype for function 'decompress_kernel' [-Wmissing-prototypes]
> decompress_kernel(unsigned long output_start, unsigned long free_mem_ptr_p,
> ^
> arch/arm/boot/compressed/misc.c:141:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
> void
> ^
> static
> arch/arm/boot/compressed/misc.c:164:6: warning: no previous prototype for function 'fortify_panic' [-Wmissing-prototypes]
> void fortify_panic(const char *name)
> ^
> arch/arm/boot/compressed/misc.c:164:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
> void fortify_panic(const char *name)
> ^
> static
> 4 warnings and 1 error generated.
>
>
> vim +62 arch/arm/mach-pxa/include/mach/uncompress.h
>
> ^1da177e4c3f41 include/asm-arm/arch-pxa/uncompress.h Linus Torvalds 2005-04-16 53
> 6d3dfe4a314147 include/asm-arm/arch-pxa/uncompress.h Eric Miao 2008-06-02 54 static inline void arch_decomp_setup(void)
> 6d3dfe4a314147 include/asm-arm/arch-pxa/uncompress.h Eric Miao 2008-06-02 55 {
> 2a8ac187e03027 arch/arm/mach-pxa/include/mach/uncompress.h Jonathan Cameron 2010-03-08 56 /* initialize to default */
> 2a8ac187e03027 arch/arm/mach-pxa/include/mach/uncompress.h Jonathan Cameron 2010-03-08 57 uart_base = FFUART_BASE;
> 2a8ac187e03027 arch/arm/mach-pxa/include/mach/uncompress.h Jonathan Cameron 2010-03-08 58 uart_shift = 2;
> 2a8ac187e03027 arch/arm/mach-pxa/include/mach/uncompress.h Jonathan Cameron 2010-03-08 59 uart_is_pxa = 1;
> 2a8ac187e03027 arch/arm/mach-pxa/include/mach/uncompress.h Jonathan Cameron 2010-03-08 60
> 28f74201e37ccf arch/arm/mach-pxa/include/mach/uncompress.h Jonathan Cameron 2022-02-27 61 if (machine_is_littleton() || machine_is_csb726() ||
> 2a23ec3679d84a arch/arm/mach-pxa/include/mach/uncompress.h Jonathan McDowell 2009-07-04 @62 || machine_is_cm_x300() || machine_is_balloon3())
>
> :::::: The code at line 62 was first introduced by commit
> :::::: 2a23ec3679d84ac243add761fa3d3872cf6dcb11 [ARM] pxa: balloon3 (http://balloonboard.org/) base machine support
>
> :::::: TO: Jonathan McDowell <noodles@earth.li>
> :::::: CC: Eric Miao <eric.y.miao@gmail.com>
>
> ---
> 0-DAY CI Kernel Test Service, Intel Corporation
> https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org
next prev parent reply other threads:[~2022-03-01 12:32 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-28 23:33 [soc:arm/soc 6/8] arch/arm/mach-pxa/include/mach/uncompress.h:62:6: error: expected expression kernel test robot
2022-02-28 23:33 ` kernel test robot
2022-03-01 12:14 ` Jonathan Cameron [this message]
2022-03-01 12:14 ` Jonathan Cameron
2022-03-01 12:14 ` Jonathan Cameron
2022-03-01 12:50 ` Arnd Bergmann
2022-03-01 12:50 ` Arnd Bergmann
2022-03-01 12:50 ` Arnd Bergmann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220301121434.00003287@Huawei.com \
--to=jonathan.cameron@huawei.com \
--cc=arm@kernel.org \
--cc=arnd@arndb.de \
--cc=kbuild-all@lists.01.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=lkp@intel.com \
--cc=llvm@lists.linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.