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

Commit b60c72ab authored by Felipe Balbi's avatar Felipe Balbi Committed by Greg Kroah-Hartman
Browse files

usb: musb: fix debug global variable name



In order to avoid namespace conflicts, add a prefix
to our kernel-wise symbol.

Signed-off-by: default avatarFelipe Balbi <felipe.balbi@nokia.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent eef767b7
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -114,8 +114,8 @@



unsigned debug;
module_param(debug, uint, S_IRUGO | S_IWUSR);
unsigned musb_debug;
module_param(musb_debug, uint, S_IRUGO | S_IWUSR);
MODULE_PARM_DESC(debug, "Debug message level. Default = 0");

#define DRIVER_AUTHOR "Mentor Graphics, Texas Instruments, Nokia"
@@ -2248,7 +2248,7 @@ static int __init musb_init(void)
		"host"
#endif
		", debug=%d\n",
		musb_driver_name, debug);
		musb_driver_name, musb_debug);
	return platform_driver_probe(&musb_driver, musb_probe);
}

+2 −2
Original line number Diff line number Diff line
@@ -48,11 +48,11 @@
				__func__, __LINE__ , ## args); \
	} } while (0)

extern unsigned debug;
extern unsigned musb_debug;

static inline int _dbg_level(unsigned l)
{
	return debug >= l;
	return musb_debug >= l;
}

#define DBG(level, fmt, args...) xprintk(level, KERN_DEBUG, fmt, ## args)