mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
91188544af
The procfs file is completely unused without CONFIG_PROC_FS but causes a compile time warning: drivers/isdn/capi/kcapi_proc.c:97:36: error: unused variable 'seq_controller_ops' [-Werror,-Wunused-const-variable] static const struct seq_operations seq_controller_ops = { drivers/isdn/capi/kcapi_proc.c:104:36: error: unused variable 'seq_contrstats_ops' [-Werror,-Wunused-const-variable] drivers/isdn/capi/kcapi_proc.c:179:36: error: unused variable 'seq_applications_ops' [-Werror,-Wunused-const-variable] drivers/isdn/capi/kcapi_proc.c:186:36: error: unused variable 'seq_applstats_ops' [-Werror,-Wunused-const-variable] Remove the file from the build in that config and make the calls into it conditional instead. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Link: https://lore.kernel.org/r/20240403080702.3509288-27-arnd@kernel.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
7 lines
217 B
Makefile
7 lines
217 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Makefile for the CAPI subsystem used by BT_CMTP
|
|
|
|
obj-$(CONFIG_BT_CMTP) += kernelcapi.o
|
|
kernelcapi-y := kcapi.o capiutil.o capi.o
|
|
kernelcapi-$(CONFIG_PROC_FS) += kcapi_proc.o
|