mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-17 09:28:24 +07:00
1323024fd3
As reported by Stephen: After merging the v4l-dvb tree, today's linux-next build (x86_64 allmodconfig) failed like this: ERROR: "sms_ir_exit" [drivers/media/common/siano/smsmdtv.ko] undefined! ERROR: "sms_ir_event" [drivers/media/common/siano/smsmdtv.ko] undefined! ERROR: "sms_ir_init" [drivers/media/common/siano/smsmdtv.ko] undefined! The smsir file should be part of the smsmdtv core, if RC is defined. Fix it. Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
12 lines
259 B
Makefile
12 lines
259 B
Makefile
smsmdtv-objs := smscoreapi.o sms-cards.o smsendian.o
|
|
|
|
obj-$(CONFIG_SMS_SIANO_MDTV) += smsmdtv.o smsdvb.o
|
|
|
|
ifeq ($(CONFIG_SMS_SIANO_RC),y)
|
|
smsmdtv-objs += smsir.o
|
|
endif
|
|
|
|
ccflags-y += -Idrivers/media/dvb-core
|
|
ccflags-y += $(extra-cflags-y) $(extra-cflags-m)
|
|
|