diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-11-06 11:32:46 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-11-06 11:32:46 -0200 |
commit | d1d700ce86a1a231cf924df720ba1706ac8f1350 (patch) | |
tree | 9be632190b560c7bef26817bf6a262ca3bfcf2cc /linux/drivers/media | |
parent | 6047119fced77a5acf013daa485c09555a799f2b (diff) | |
download | mediapointer-dvb-s2-d1d700ce86a1a231cf924df720ba1706ac8f1350.tar.gz mediapointer-dvb-s2-d1d700ce86a1a231cf924df720ba1706ac8f1350.tar.bz2 |
Fix compilation for em28xx
From: Mauro Carvalho Chehab <mchehab@infradead.org>
In file included from drivers/media/video/em28xx/em28xx-i2c.c:31:
drivers/media/video/tuner-xc2028.h:10:26: error: dvb_frontend.h: No such file or directory
In file included from drivers/media/video/em28xx/em28xx-i2c.c:31:
drivers/media/video/tuner-xc2028.h:32: warning: 'struct dvb_frontend' declared inside parameter list
drivers/media/video/tuner-xc2028.h:32: warning: its scope is only this definition or declaration, which is probably not what you want
kernel-sync:
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media')
-rw-r--r-- | linux/drivers/media/video/em28xx/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/linux/drivers/media/video/em28xx/Makefile b/linux/drivers/media/video/em28xx/Makefile index 826d0e340..7e7a93d75 100644 --- a/linux/drivers/media/video/em28xx/Makefile +++ b/linux/drivers/media/video/em28xx/Makefile @@ -4,3 +4,6 @@ em28xx-objs := em28xx-video.o em28xx-i2c.o em28xx-cards.o em28xx-core.o \ obj-$(CONFIG_VIDEO_EM28XX) += em28xx.o EXTRA_CFLAGS += -Idrivers/media/video +EXTRA_CFLAGS += -Idrivers/media/dvb/dvb-core +EXTRA_CFLAGS += -Idrivers/media/dvb/frontends + |