openrisc: Add prototype for show_registers to processor.h
authorStafford Horne <shorne@gmail.com>
Sun, 20 Aug 2023 16:11:39 +0000 (17:11 +0100)
committerStafford Horne <shorne@gmail.com>
Mon, 21 Aug 2023 07:15:18 +0000 (08:15 +0100)
commit8d4a142904f07765b7c7c46abf71f811a0811987
tree325ec41a56fa0cc3163f840f8e248819ba7430e6
parentaf1fc7402e560f27ea5a92b7ee0572e3d1e389c5
openrisc: Add prototype for show_registers to processor.h

When compiling with W=1 enabling -Wmissing-prototypes the compiler
warns:

  arch/openrisc/kernel/traps.c:67:6: error: no previous prototype for 'show_registers' [-Werror=missing-prototypes]

Fix by adding the prototype to the appropriate header file and including
the header file in the appropriate C files.

Reported-by: Arnd Bergmann <arnd@arndb.de>
Closes: https://lore.kernel.org/linux-kernel/20230810141947.1236730-17-arnd@kernel.org/
Signed-off-by: Stafford Horne <shorne@gmail.com>
arch/openrisc/include/asm/processor.h
arch/openrisc/kernel/process.c
arch/openrisc/kernel/traps.c