diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-01-13 11:10:19 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@brturbo.com.br> | 2006-01-13 11:10:19 -0500 |
commit | a5ed425cd30c0c2abac4039ae11b38520aa130c2 (patch) | |
tree | 407b7417679f395946e04b1107de5ecab64349df /drivers/media/video/bttv-cards.c | |
parent | 43ecb9a33ba8c93ebbda81d48ca05f0d1bbf9056 (diff) |
V4L/DVB (3355): removed uneeded init on structs like static int foo=0
- Static vars are equal to zero by default. Removed unnecessary =0 from them,
saving some data space
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/bttv-cards.c')
-rw-r--r-- | drivers/media/video/bttv-cards.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/video/bttv-cards.c b/drivers/media/video/bttv-cards.c index 65323e78d5fd..9749d6ed6231 100644 --- a/drivers/media/video/bttv-cards.c +++ b/drivers/media/video/bttv-cards.c | |||
@@ -92,8 +92,8 @@ static void identify_by_eeprom(struct bttv *btv, | |||
92 | static int __devinit pvr_boot(struct bttv *btv); | 92 | static int __devinit pvr_boot(struct bttv *btv); |
93 | 93 | ||
94 | /* config variables */ | 94 | /* config variables */ |
95 | static unsigned int triton1=0; | 95 | static unsigned int triton1; |
96 | static unsigned int vsfx=0; | 96 | static unsigned int vsfx; |
97 | static unsigned int latency = UNSET; | 97 | static unsigned int latency = UNSET; |
98 | int no_overlay=-1; | 98 | int no_overlay=-1; |
99 | 99 | ||
@@ -106,7 +106,7 @@ static struct bttv *master[BTTV_MAX] = { [ 0 ... (BTTV_MAX-1) ] = NULL }; | |||
106 | #ifdef MODULE | 106 | #ifdef MODULE |
107 | static unsigned int autoload = 1; | 107 | static unsigned int autoload = 1; |
108 | #else | 108 | #else |
109 | static unsigned int autoload = 0; | 109 | static unsigned int autoload; |
110 | #endif | 110 | #endif |
111 | static unsigned int gpiomask = UNSET; | 111 | static unsigned int gpiomask = UNSET; |
112 | static unsigned int audioall = UNSET; | 112 | static unsigned int audioall = UNSET; |