mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-31 14:13:39 +00:00

Make dependency on DEBUG_FS conditional, that way we are not forced to enable DEBUG_FS if we can to use this driver. Signed-off-by: Ricardo Ribalda <ribalda@chromium.org> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
12 lines
322 B
Makefile
12 lines
322 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
c8sectpfe-y += c8sectpfe-core.o c8sectpfe-common.o c8sectpfe-dvb.o
|
|
|
|
ifneq ($(CONFIG_DEBUG_FS),)
|
|
c8sectpfe-y += c8sectpfe-debugfs.o
|
|
endif
|
|
|
|
obj-$(CONFIG_DVB_C8SECTPFE) += c8sectpfe.o
|
|
|
|
ccflags-y += -I $(srctree)/drivers/media/dvb-frontends/
|
|
ccflags-y += -I $(srctree)/drivers/media/tuners/
|