Hi Arnaud,
kernel test robot noticed the following build errors:
[auto build test ERROR on 1613e604df0cd359cf2a7fbd9be7a0bcfacfabd0]
url: https://github.com/intel-lab-lkp/linux/commits/Arnaud-Pouliquen/remoteproc-c... base: 1613e604df0cd359cf2a7fbd9be7a0bcfacfabd0 patch link: https://lore.kernel.org/r/20240607093326.369090-6-arnaud.pouliquen%40foss.st... patch subject: [PATCH v6 5/5] remoteproc: stm32: Add support of an OP-TEE TA to load the firmware config: i386-buildonly-randconfig-002-20240608 (https://download.01.org/0day-ci/archive/20240608/202406081159.KM501g5C-lkp@i...) compiler: clang version 18.1.5 (https://github.com/llvm/llvm-project 617a15a9eac96088ae5e9134248d8236e34b91b1) reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240608/202406081159.KM501g5C-lkp@i...)
If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot lkp@intel.com | Closes: https://lore.kernel.org/oe-kbuild-all/202406081159.KM501g5C-lkp@intel.com/
All errors (new ones prefixed by >>):
In file included from drivers/remoteproc/stm32_rproc.c:23:
include/linux/tee_remoteproc.h:94:2: error: expected parameter declarator
94 | WARN_ON(1); | ^ include/asm-generic/bug.h:122:29: note: expanded from macro 'WARN_ON' 122 | #define WARN_ON(condition) ({ \ | ^ In file included from drivers/remoteproc/stm32_rproc.c:23:
include/linux/tee_remoteproc.h:94:2: error: expected ')'
include/asm-generic/bug.h:122:29: note: expanded from macro 'WARN_ON' 122 | #define WARN_ON(condition) ({ \ | ^ include/linux/tee_remoteproc.h:94:2: note: to match this '(' include/asm-generic/bug.h:122:28: note: expanded from macro 'WARN_ON' 122 | #define WARN_ON(condition) ({ \ | ^ In file included from drivers/remoteproc/stm32_rproc.c:23:
include/linux/tee_remoteproc.h:92:32: error: function cannot return function type 'struct resource_table *()'
92 | tee_rproc_find_loaded_rsc_table(struct rproc *rproc, const struct firmware *fw) | ^
include/linux/tee_remoteproc.h:94:2: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes]
94 | WARN_ON(1); | ^ include/asm-generic/bug.h:122:28: note: expanded from macro 'WARN_ON' 122 | #define WARN_ON(condition) ({ \ | ^ In file included from drivers/remoteproc/stm32_rproc.c:23:
include/linux/tee_remoteproc.h:96:2: error: expected identifier or '('
96 | return NULL; | ^
include/linux/tee_remoteproc.h:97:1: error: extraneous closing brace ('}')
97 | } | ^ 6 errors generated.
vim +94 include/linux/tee_remoteproc.h
5c0eb7b2737b6e Arnaud Pouliquen 2024-06-07 90 5c0eb7b2737b6e Arnaud Pouliquen 2024-06-07 91 static inline struct resource_table * 5c0eb7b2737b6e Arnaud Pouliquen 2024-06-07 @92 tee_rproc_find_loaded_rsc_table(struct rproc *rproc, const struct firmware *fw) 5c0eb7b2737b6e Arnaud Pouliquen 2024-06-07 93 /* This shouldn't be possible */ 5c0eb7b2737b6e Arnaud Pouliquen 2024-06-07 @94 WARN_ON(1); 5c0eb7b2737b6e Arnaud Pouliquen 2024-06-07 95 5c0eb7b2737b6e Arnaud Pouliquen 2024-06-07 @96 return NULL; 5c0eb7b2737b6e Arnaud Pouliquen 2024-06-07 @97 }