aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorJohannes Stezenbach <js@linuxtv.org>2005-05-16 21:54:20 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-05-17 07:59:27 -0700
commitc2c62d81430e907b6599d4be43a7ee6f74d2bd69 (patch)
treeba6132cd5a607cd71bc3910aedb7296a81fe7175 /drivers
parent[PATCH] dvb: support for TT/Hauppauge Nexus-S Rev 2.3 (diff)
downloadlinux-dev-c2c62d81430e907b6599d4be43a7ee6f74d2bd69.tar.xz
linux-dev-c2c62d81430e907b6599d4be43a7ee6f74d2bd69.zip
[PATCH] dvb: saa7146: no need to initialize static/global variables to 0
no need to initialize static/global variables to 0 Signed-off-by: Johannes Stezenbach <js@linuxtv.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/media/common/saa7146_core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/common/saa7146_core.c b/drivers/media/common/saa7146_core.c
index 9f6c19ac1285..50e8b8654018 100644
--- a/drivers/media/common/saa7146_core.c
+++ b/drivers/media/common/saa7146_core.c
@@ -23,9 +23,9 @@
LIST_HEAD(saa7146_devices);
DECLARE_MUTEX(saa7146_devices_lock);
-static int saa7146_num = 0;
+static int saa7146_num;
-unsigned int saa7146_debug = 0;
+unsigned int saa7146_debug;
module_param(saa7146_debug, int, 0644);
MODULE_PARM_DESC(saa7146_debug, "debug level (default: 0)");