Skip to content
Snippets Groups Projects
Commit c2c62d81 authored by Johannes Stezenbach's avatar Johannes Stezenbach Committed by Linus Torvalds
Browse files

[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
No related merge requests found
...@@ -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)");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment