mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-20 13:08:01 +07:00
503efe5cfc
To avoid mixing two different things at the same place, move the debugfs code into a separate file. Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
17 lines
366 B
Makefile
17 lines
366 B
Makefile
smsmdtv-objs := smscoreapi.o sms-cards.o smsendian.o
|
|
smsdvb-objs := smsdvb-main.o
|
|
|
|
obj-$(CONFIG_SMS_SIANO_MDTV) += smsmdtv.o smsdvb.o
|
|
|
|
ifeq ($(CONFIG_SMS_SIANO_RC),y)
|
|
smsmdtv-objs += smsir.o
|
|
endif
|
|
|
|
ifeq ($(CONFIG_SMS_SIANO_DEBUGFS),y)
|
|
smsdvb-objs += smsdvb-debugfs.o
|
|
endif
|
|
|
|
ccflags-y += -Idrivers/media/dvb-core
|
|
ccflags-y += $(extra-cflags-y) $(extra-cflags-m)
|
|
|