diff options
author | Douglas Schilling Landgraf <dougsland@gmail.com> | 2008-04-22 13:41:48 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-24 12:42:20 -0400 |
commit | ff699e6bd02eb1c6d02c7c2b576c2ee6caab201c (patch) | |
tree | 496169dda7f8f4dc471f76f715805eb92d621db3 /drivers/media/video/tvaudio.c | |
parent | 29bec0bff50d8f8b108ed22e9981eb4635efc566 (diff) |
V4L/DVB (7094): static memory
- Static memory is always initialized with 0.
- Replaced in some cases C99 comments for /* */
Signed-off-by: Douglas Schilling Landgraf <dougsland@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/tvaudio.c')
-rw-r--r-- | drivers/media/video/tvaudio.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/media/video/tvaudio.c b/drivers/media/video/tvaudio.c index 01ebcec040c4..f29a2cd0f2f2 100644 --- a/drivers/media/video/tvaudio.c +++ b/drivers/media/video/tvaudio.c | |||
@@ -38,7 +38,7 @@ | |||
38 | /* ---------------------------------------------------------------------- */ | 38 | /* ---------------------------------------------------------------------- */ |
39 | /* insmod args */ | 39 | /* insmod args */ |
40 | 40 | ||
41 | static int debug = 0; /* insmod parameter */ | 41 | static int debug; /* insmod parameter */ |
42 | module_param(debug, int, 0644); | 42 | module_param(debug, int, 0644); |
43 | 43 | ||
44 | MODULE_DESCRIPTION("device driver for various i2c TV sound decoder / audiomux chips"); | 44 | MODULE_DESCRIPTION("device driver for various i2c TV sound decoder / audiomux chips"); |
@@ -1235,11 +1235,11 @@ static int tda9850 = 1; | |||
1235 | static int tda9855 = 1; | 1235 | static int tda9855 = 1; |
1236 | static int tda9873 = 1; | 1236 | static int tda9873 = 1; |
1237 | static int tda9874a = 1; | 1237 | static int tda9874a = 1; |
1238 | static int tea6300 = 0; /* address clash with msp34xx */ | 1238 | static int tea6300; /* default 0 - address clash with msp34xx */ |
1239 | static int tea6320 = 0; /* address clash with msp34xx */ | 1239 | static int tea6320; /* default 0 - address clash with msp34xx */ |
1240 | static int tea6420 = 1; | 1240 | static int tea6420 = 1; |
1241 | static int pic16c54 = 1; | 1241 | static int pic16c54 = 1; |
1242 | static int ta8874z = 0; /* address clash with tda9840 */ | 1242 | static int ta8874z; /* default 0 - address clash with tda9840 */ |
1243 | 1243 | ||
1244 | module_param(tda8425, int, 0444); | 1244 | module_param(tda8425, int, 0444); |
1245 | module_param(tda9840, int, 0444); | 1245 | module_param(tda9840, int, 0444); |