Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

media: c8sectpfe: Add missing parameter names

clang 19 complains about the missing parameter name. Let's add it.

drivers/media/platform/st/sti/c8sectpfe/c8sectpfe-debugfs.h:19:62: warning: omitting the parameter name in a function definition is a C23 extension [-Wc23-extensions]

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202406050908.1kL1C69p-lkp@intel.com/
Fixes: e22b4973ee20 ("media: c8sectpfe: Do not depend on DEBUG_FS")
Signed-off-by: Ricardo Ribalda <ribalda@chromium.org>
Reviewed-by: Nathan Chancellor <nathan@kernel.org>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>

authored by

Ricardo Ribalda and committed by
Hans Verkuil
abb7a73b d41b69a0

+2 -2
+2 -2
drivers/media/platform/st/sti/c8sectpfe/c8sectpfe-debugfs.h
··· 16 16 void c8sectpfe_debugfs_init(struct c8sectpfei *); 17 17 void c8sectpfe_debugfs_exit(struct c8sectpfei *); 18 18 #else 19 - static inline void c8sectpfe_debugfs_init(struct c8sectpfei *) {}; 20 - static inline void c8sectpfe_debugfs_exit(struct c8sectpfei *) {}; 19 + static inline void c8sectpfe_debugfs_init(struct c8sectpfei *fei) {}; 20 + static inline void c8sectpfe_debugfs_exit(struct c8sectpfei *fei) {}; 21 21 #endif 22 22 23 23 #endif /* __C8SECTPFE_DEBUG_H */