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

atm: hide unused procfs functions

When CONFIG_PROC_FS is disabled, the function declarations for some
procfs functions are hidden, but the definitions are still build,
as shown by this compiler warning:

net/atm/resources.c:403:7: error: no previous prototype for 'atm_dev_seq_start' [-Werror=missing-prototypes]
net/atm/resources.c:409:6: error: no previous prototype for 'atm_dev_seq_stop' [-Werror=missing-prototypes]
net/atm/resources.c:414:7: error: no previous prototype for 'atm_dev_seq_next' [-Werror=missing-prototypes]

Add another #ifdef to leave these out of the build.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Link: https://lore.kernel.org/r/20230516194625.549249-2-arnd@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Arnd Bergmann and committed by
Jakub Kicinski
fb1b7be9 067dee65

+2
+2
net/atm/resources.c
··· 400 400 return error; 401 401 } 402 402 403 + #ifdef CONFIG_PROC_FS 403 404 void *atm_dev_seq_start(struct seq_file *seq, loff_t *pos) 404 405 { 405 406 mutex_lock(&atm_dev_mutex); ··· 416 415 { 417 416 return seq_list_next(v, &atm_devs, pos); 418 417 } 418 + #endif