diff options
| author | Arnd Bergmann <arnd@arndb.de> | 2023-05-16 21:45:34 +0200 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2023-06-09 10:28:59 +0200 |
| commit | 11b084412055ab9541e00032fc8ba018a6f45c06 (patch) | |
| tree | a851120349608152bd6fe738f82cab844b3b6395 | |
| parent | cea581b385ab6e6d0f02517d95efe4195a0807ce (diff) | |
| download | linux-11b084412055ab9541e00032fc8ba018a6f45c06.tar.gz linux-11b084412055ab9541e00032fc8ba018a6f45c06.tar.bz2 linux-11b084412055ab9541e00032fc8ba018a6f45c06.zip | |
atm: hide unused procfs functions
[ Upstream commit fb1b7be9b16c1f4626969ba4e95a97da2a452b41 ]
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>
Signed-off-by: Sasha Levin <sashal@kernel.org>
| -rw-r--r-- | net/atm/resources.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/atm/resources.c b/net/atm/resources.c index 889349c6d90d..04b2235c5c26 100644 --- a/net/atm/resources.c +++ b/net/atm/resources.c @@ -443,6 +443,7 @@ done: return error; } +#ifdef CONFIG_PROC_FS void *atm_dev_seq_start(struct seq_file *seq, loff_t *pos) { mutex_lock(&atm_dev_mutex); @@ -458,3 +459,4 @@ void *atm_dev_seq_next(struct seq_file *seq, void *v, loff_t *pos) { return seq_list_next(v, &atm_devs, pos); } +#endif |
