diff options
author | Mauro Carvalho Chehab <devnull@localhost> | 2006-01-12 13:09:55 +0000 |
---|---|---|
committer | Mauro Carvalho Chehab <devnull@localhost> | 2006-01-12 13:09:55 +0000 |
commit | 897df2a4edc8a794befcd10d52db7c000994a46d (patch) | |
tree | 1ca41f55afffb21aa0b3ba3d8844205e92ccd6b6 /linux/drivers/media/dvb/bt8xx | |
parent | 53e0372380feff0b202c4178d178cf7ba96c475d (diff) | |
download | mediapointer-dvb-s2-897df2a4edc8a794befcd10d52db7c000994a46d.tar.gz mediapointer-dvb-s2-897df2a4edc8a794befcd10d52db7c000994a46d.tar.bz2 |
removed uneeded init on structs like static int foo=0
From: Mauro Carvalho Chehab <mchehab@infradead.org>
- static vars are equal to zero by default. Removed
unnecessary =0 from them, saving some data space;
- Fixed compiling against kernels bellow 2.6.13.
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/dvb/bt8xx')
-rw-r--r-- | linux/drivers/media/dvb/bt8xx/bt878.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/bt8xx/bt878.c b/linux/drivers/media/dvb/bt8xx/bt878.c index f29571450..a04bb61f2 100644 --- a/linux/drivers/media/dvb/bt8xx/bt878.c +++ b/linux/drivers/media/dvb/bt8xx/bt878.c @@ -542,7 +542,7 @@ static struct pci_driver bt878_pci_driver = { .remove = bt878_remove, }; -static int bt878_pci_driver_registered = 0; +static int bt878_pci_driver_registered; /*******************************/ /* Module management functions */ |