aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2012-11-23 10:48:39 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-11-23 10:48:39 -0500
commit1323024fd3296537dd34da70fe70b4df12a308ec (patch)
tree170145f5f3ab0f5f36cfd779747025b25bc89443 /drivers/media
parent6d9a06f27a640967fc95a36ccb2f2d69e2e71f8a (diff)
[media] siano: fix build with allmodconfig
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>
Diffstat (limited to 'drivers/media')
-rw-r--r--drivers/media/common/siano/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/common/siano/Makefile b/drivers/media/common/siano/Makefile
index 9e7fdf24a6b..81b1e985bea 100644
--- a/drivers/media/common/siano/Makefile
+++ b/drivers/media/common/siano/Makefile
@@ -3,7 +3,7 @@ smsmdtv-objs := smscoreapi.o sms-cards.o smsendian.o
3obj-$(CONFIG_SMS_SIANO_MDTV) += smsmdtv.o smsdvb.o 3obj-$(CONFIG_SMS_SIANO_MDTV) += smsmdtv.o smsdvb.o
4 4
5ifeq ($(CONFIG_SMS_SIANO_RC),y) 5ifeq ($(CONFIG_SMS_SIANO_RC),y)
6 obj-$(CONFIG_SMS_SIANO_MDTV) += smsir.o 6 smsmdtv-objs += smsir.o
7endif 7endif
8 8
9ccflags-y += -Idrivers/media/dvb-core 9ccflags-y += -Idrivers/media/dvb-core