diff options
Diffstat (limited to 'v4l')
-rw-r--r-- | v4l/ChangeLog | 17 | ||||
-rw-r--r-- | v4l/Makefile | 5 |
2 files changed, 20 insertions, 2 deletions
diff --git a/v4l/ChangeLog b/v4l/ChangeLog index 8a27edde8..f43085148 100644 --- a/v4l/ChangeLog +++ b/v4l/ChangeLog @@ -1,11 +1,24 @@ -2005-07-21 23:53 mkrufky +2005-07-22 00:50 mkrufky + * Makefile: + - Restore EXTRA_CFLAGS for DVB frontends previously removed in error. + These flags do not determine whether frontends are built, instead + they determine whether support for compatability with certain + frontends is built-into cx88-dvb.c and saa7134-dvb.c . With all of + these flags not set, both cx88-dvb and saa7134-dvb will report that + the frontend is not supported, no matter what frontend is present. + Both lgdt3302 and tda1004x are disabled within cx88-dvb and + saa7134-dvb, respectively, for kernel versions less than 2.6.13. + + Signed-off-by: Michael Krufky <mkrufky@m1k.net> + +2005-07-21 21:53 mkrufky * tveeprom.c, tveeprom.h: - make two needlessly global structs static. - #if 0 the EXPORT_SYMBOL'ed but unused function tveeprom_dump. Signed-off-by: Adrian Bunk <bunk@stusta.de> -2005-07-21 23:08 hhackmann +2005-07-21 21:08 hhackmann * saa7134-i2c.c: - Ensure a sufficient I2C bus idle time between 2 messages diff --git a/v4l/Makefile b/v4l/Makefile index 44057bf92..1860c169a 100644 --- a/v4l/Makefile +++ b/v4l/Makefile @@ -58,9 +58,14 @@ EXTRA_CFLAGS += -I$(srctree)/drivers/media/dvb/dvb-core/ EXTRA_CFLAGS += -I$(srctree)/drivers/media/dvb/frontends/ ifeq ($(CONFIG_VIDEO_CX88_DVB),m) EXTRA_CFLAGS += -DCONFIG_VIDEO_CX88_DVB_MODULE=1 + EXTRA_CFLAGS += -DCONFIG_DVB_CX22702=1 + EXTRA_CFLAGS += -DCONFIG_DVB_OR51132=1 + EXTRA_CFLAGS += -DCONFIG_DVB_LGDT3302=1 + EXTRA_CFLAGS += -DCONFIG_DVB_MT352=1 endif ifeq ($(CONFIG_VIDEO_SAA7134_DVB),m) EXTRA_CFLAGS += -DCONFIG_DVB_MT352=1 + EXTRA_CFLAGS += -DCONFIG_DVB_TDA1004X=1 endif ################################################# |