diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-01-27 14:09:24 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-01-27 14:09:24 -0200 |
commit | 07c40dde6fd84df8218fed6351fe81f77458406e (patch) | |
tree | 2d8046452992b6b68b5c6d067ee6ca4a690b39b7 /linux/drivers/media/video/tvaudio.c | |
parent | 0b14b001f4b716b7d53a1413de30bbdb70764651 (diff) | |
parent | 56ab5d5a038d60cd901d04a60c56f4a9e0631c00 (diff) | |
download | mediapointer-dvb-s2-07c40dde6fd84df8218fed6351fe81f77458406e.tar.gz mediapointer-dvb-s2-07c40dde6fd84df8218fed6351fe81f77458406e.tar.bz2 |
merge: http://linuxtv.org/hg/~dougsland/v4l
From: Mauro Carvalho Chehab <mchehab@infradead.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/video/tvaudio.c')
-rw-r--r-- | linux/drivers/media/video/tvaudio.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linux/drivers/media/video/tvaudio.c b/linux/drivers/media/video/tvaudio.c index 26591c780..fb155de1d 100644 --- a/linux/drivers/media/video/tvaudio.c +++ b/linux/drivers/media/video/tvaudio.c @@ -45,7 +45,7 @@ /* ---------------------------------------------------------------------- */ /* insmod args */ -static int debug = 0; /* insmod parameter */ +static int debug; /* insmod parameter */ module_param(debug, int, 0644); MODULE_DESCRIPTION("device driver for various i2c TV sound decoder / audiomux chips"); @@ -1252,11 +1252,11 @@ static int tda9850 = 1; static int tda9855 = 1; static int tda9873 = 1; static int tda9874a = 1; -static int tea6300 = 0; /* address clash with msp34xx */ -static int tea6320 = 0; /* address clash with msp34xx */ +static int tea6300; /* default 0 - address clash with msp34xx */ +static int tea6320; /* default 0 - address clash with msp34xx */ static int tea6420 = 1; static int pic16c54 = 1; -static int ta8874z = 0; /* address clash with tda9840 */ +static int ta8874z; /* default 0 - address clash with tda9840 */ module_param(tda8425, int, 0444); module_param(tda9840, int, 0444); |