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/stradis.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/stradis.c')
-rw-r--r-- | drivers/media/video/stradis.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/stradis.c b/drivers/media/video/stradis.c index 3fb85af5d1f2..3118dd322b24 100644 --- a/drivers/media/video/stradis.c +++ b/drivers/media/video/stradis.c | |||
@@ -58,7 +58,7 @@ | |||
58 | 58 | ||
59 | static struct saa7146 saa7146s[SAA7146_MAX]; | 59 | static struct saa7146 saa7146s[SAA7146_MAX]; |
60 | 60 | ||
61 | static int saa_num = 0; /* number of SAA7146s in use */ | 61 | static int saa_num; /* number of SAA7146s in use */ |
62 | 62 | ||
63 | static int video_nr = -1; | 63 | static int video_nr = -1; |
64 | module_param(video_nr, int, 0); | 64 | module_param(video_nr, int, 0); |
@@ -248,7 +248,7 @@ static void I2CBusScan(struct saa7146 *saa) | |||
248 | attach_inform(saa, i); | 248 | attach_inform(saa, i); |
249 | } | 249 | } |
250 | 250 | ||
251 | static int debiwait_maxwait = 0; | 251 | static int debiwait_maxwait; |
252 | 252 | ||
253 | static int wait_for_debi_done(struct saa7146 *saa) | 253 | static int wait_for_debi_done(struct saa7146 *saa) |
254 | { | 254 | { |