forked from luck/tmp_suning_uos_patched
V4L/DVB (12303): cx23885: check pointers before dereferencing in dprintk macro
When enabling debug with v4l_debug set to 2 or greater, the driver OOPS's on startup. Checks dev pointer before dereferencing, in order to prevent this OOPS. Signed-off-by: Michael Krufky <mkrufky@kernellabs.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
12a34cc8a9
commit
ca4e771f7b
|
@ -58,7 +58,8 @@ MODULE_PARM_DESC(v4l_debug, "enable V4L debug messages");
|
|||
|
||||
#define dprintk(level, fmt, arg...)\
|
||||
do { if (v4l_debug >= level) \
|
||||
printk(KERN_DEBUG "%s: " fmt, dev->name , ## arg);\
|
||||
printk(KERN_DEBUG "%s: " fmt, \
|
||||
(dev) ? dev->name : "cx23885[?]", ## arg); \
|
||||
} while (0)
|
||||
|
||||
static struct cx23885_tvnorm cx23885_tvnorms[] = {
|
||||
|
|
Loading…
Reference in New Issue
Block a user