This function is only used within this source file. Fixes `-Wmissing-prototypes`: arch/alpha/kernel/smc37c669.c:2434:1: error: no previous prototype for 'SMC37c669_dump_registers' [-Werror=missing-prototypes] 2434 | SMC37c669_dump_registers(void) | ^~~~~~~~~~~~~~~~~~~~~~~~ Also add `#if SMC_DEBUG` because it's only ever used under this condition. Signed-off-by: Max Kellermann <max.kellermann@xxxxxxxxx> --- arch/alpha/kernel/smc37c669.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/arch/alpha/kernel/smc37c669.c b/arch/alpha/kernel/smc37c669.c index bbbd34586de0..ab22ade3dea3 100644 --- a/arch/alpha/kernel/smc37c669.c +++ b/arch/alpha/kernel/smc37c669.c @@ -2430,13 +2430,16 @@ int __init smcc669_write( struct FILE *fp, int size, int number, unsigned char * } #endif -void __init +#if SMC_DEBUG +static void __init SMC37c669_dump_registers(void) { int i; for (i = 0; i <= 0x29; i++) printk("-- CR%02x : %02x\n", i, SMC37c669_read_config(i)); } +#endif // SMC_DEBUG + /*+ * ============================================================================ * = SMC_init - SMC37c669 Super I/O controller initialization = -- 2.39.2