diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-12-08 10:34:37 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-12-08 10:34:37 -0200 |
commit | 0c09e76188a772f3abeb2c319a1a473330b25905 (patch) | |
tree | fbcc2e1dc6c925c3cd9c9ce22a51f24e72fd6268 /linux/drivers/media/dvb | |
parent | 8e0902727b7a2171f0e3fd00f545e824539f04a9 (diff) | |
download | mediapointer-dvb-s2-0c09e76188a772f3abeb2c319a1a473330b25905.tar.gz mediapointer-dvb-s2-0c09e76188a772f3abeb2c319a1a473330b25905.tar.bz2 |
Fix in-kernel compilation for cxusb
From: Mauro Carvalho Chehab <mchehab@infradead.org>
cxusb needs tuner-xc2028*.h files, but Makefile is not adding its patch
drivers/media/dvb/dvb-usb/cxusb.c:33:26: error: tuner-xc2028.h: File not found
drivers/media/dvb/dvb-usb/cxusb.c:34:32: error: tuner-xc2028-types.h: File not found
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/dvb')
-rw-r--r-- | linux/drivers/media/dvb/dvb-usb/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/linux/drivers/media/dvb/dvb-usb/Makefile b/linux/drivers/media/dvb/dvb-usb/Makefile index 73ac0a93f..60a910052 100644 --- a/linux/drivers/media/dvb/dvb-usb/Makefile +++ b/linux/drivers/media/dvb/dvb-usb/Makefile @@ -62,3 +62,6 @@ dvb-usb-af9005-remote-objs = af9005-remote.o obj-$(CONFIG_DVB_USB_AF9005_REMOTE) += dvb-usb-af9005-remote.o EXTRA_CFLAGS += -Idrivers/media/dvb/dvb-core/ -Idrivers/media/dvb/frontends/ +# due to tuner-xc3028 +EXTRA_CFLAGS += -Idrivers/media/video + |