Commit c2c62d81 authored by Johannes Stezenbach's avatar Johannes Stezenbach Committed by Linus Torvalds

[PATCH] dvb: saa7146: no need to initialize static/global variables to 0

no need to initialize static/global variables to 0
Signed-off-by: default avatarJohannes Stezenbach <js@linuxtv.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 3dfaebda
...@@ -23,9 +23,9 @@ ...@@ -23,9 +23,9 @@
LIST_HEAD(saa7146_devices); LIST_HEAD(saa7146_devices);
DECLARE_MUTEX(saa7146_devices_lock); 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_param(saa7146_debug, int, 0644);
MODULE_PARM_DESC(saa7146_debug, "debug level (default: 0)"); MODULE_PARM_DESC(saa7146_debug, "debug level (default: 0)");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment