diff options
author | Michael Krufky <devnull@localhost> | 2005-07-22 01:03:41 +0000 |
---|---|---|
committer | Michael Krufky <devnull@localhost> | 2005-07-22 01:03:41 +0000 |
commit | 19bff174c9562127f0be0a9a90785be79eff15a4 (patch) | |
tree | 12bfc67b183a3ed458eb70501ed0779ccf8ab9ba | |
parent | 5e4b21b9b82702742eabb520ce2821fdca07c26a (diff) | |
download | mediapointer-dvb-s2-19bff174c9562127f0be0a9a90785be79eff15a4.tar.gz mediapointer-dvb-s2-19bff174c9562127f0be0a9a90785be79eff15a4.tar.bz2 |
* 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>
-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 ################################################# |