Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -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)");