diff options
author | Gerd Knorr <devnull@localhost> | 2005-03-04 09:24:56 +0000 |
---|---|---|
committer | Gerd Knorr <devnull@localhost> | 2005-03-04 09:24:56 +0000 |
commit | ce873026584b5541f01c33e1c1dc749b0499ae9c (patch) | |
tree | a51bb9490bf636954182e8a80cbeb1c73cf02106 /linux/drivers | |
parent | 96b4f30724b4a41d27a056a467c39dabe7da31fd (diff) | |
download | mediapointer-dvb-s2-ce873026584b5541f01c33e1c1dc749b0499ae9c.tar.gz mediapointer-dvb-s2-ce873026584b5541f01c33e1c1dc749b0499ae9c.tar.bz2 |
- build fixes for older kernels.
Diffstat (limited to 'linux/drivers')
-rw-r--r-- | linux/drivers/media/video/mt20xx.c | 4 | ||||
-rw-r--r-- | linux/drivers/media/video/tda8290.c | 3 | ||||
-rw-r--r-- | linux/drivers/media/video/tuner-simple.c | 3 | ||||
-rw-r--r-- | linux/drivers/media/video/tveeprom.c | 1 |
4 files changed, 8 insertions, 3 deletions
diff --git a/linux/drivers/media/video/mt20xx.c b/linux/drivers/media/video/mt20xx.c index 2bc3c1e19..f6647caf7 100644 --- a/linux/drivers/media/video/mt20xx.c +++ b/linux/drivers/media/video/mt20xx.c @@ -1,5 +1,5 @@ /* - * $Id: mt20xx.c,v 1.3 2005/02/15 15:59:35 kraxel Exp $ + * $Id: mt20xx.c,v 1.4 2005/03/04 09:24:56 kraxel Exp $ * * i2c tv tuner chip device driver * controls microtune tuners, mt2032 + mt2050 at the moment. @@ -7,7 +7,9 @@ #include <linux/delay.h> #include <linux/i2c.h> #include <linux/videodev.h> +#include <linux/moduleparam.h> #include <media/tuner.h> +#include "compat.h" /* ---------------------------------------------------------------------- */ diff --git a/linux/drivers/media/video/tda8290.c b/linux/drivers/media/video/tda8290.c index fdb08f113..02c989204 100644 --- a/linux/drivers/media/video/tda8290.c +++ b/linux/drivers/media/video/tda8290.c @@ -1,5 +1,5 @@ /* - * $Id: tda8290.c,v 1.5 2005/02/15 15:59:35 kraxel Exp $ + * $Id: tda8290.c,v 1.6 2005/03/04 09:24:56 kraxel Exp $ * * i2c tv tuner chip device driver * controls the philips tda8290+75 tuner chip combo. @@ -8,6 +8,7 @@ #include <linux/videodev.h> #include <linux/delay.h> #include <media/tuner.h> +#include "compat.h" /* ---------------------------------------------------------------------- */ diff --git a/linux/drivers/media/video/tuner-simple.c b/linux/drivers/media/video/tuner-simple.c index a7664ee9a..c00770441 100644 --- a/linux/drivers/media/video/tuner-simple.c +++ b/linux/drivers/media/video/tuner-simple.c @@ -1,5 +1,5 @@ /* - * $Id: tuner-simple.c,v 1.8 2005/03/03 15:30:39 kraxel Exp $ + * $Id: tuner-simple.c,v 1.9 2005/03/04 09:24:56 kraxel Exp $ * * i2c tv tuner chip device driver * controls all those simple 4-control-bytes style tuners. @@ -8,6 +8,7 @@ #include <linux/i2c.h> #include <linux/videodev.h> #include <media/tuner.h> +#include "compat.h" /* ---------------------------------------------------------------------- */ diff --git a/linux/drivers/media/video/tveeprom.c b/linux/drivers/media/video/tveeprom.c index dcb9c2d0b..d4904444c 100644 --- a/linux/drivers/media/video/tveeprom.c +++ b/linux/drivers/media/video/tveeprom.c @@ -31,6 +31,7 @@ #include <linux/version.h> #include <linux/module.h> +#include <linux/moduleparam.h> #include <linux/errno.h> #include <linux/kernel.h> #include <linux/init.h> |