Commit 5d096c3b authored by Rahul Bedarkar's avatar Rahul Bedarkar Committed by Greg Kroah-Hartman

staging: bcm: fix sparse warning in module_param

This patch fixes sparse warning in module_param
warning: pointer targets in return differ in signedness [-Wpointer-sign]
Signed-off-by: default avatarRahul Bedarkar <rahulbedarkar89@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5d0d813d
......@@ -15,7 +15,7 @@ static struct usb_device_id InterfaceUsbtable[] = {
MODULE_DEVICE_TABLE(usb, InterfaceUsbtable);
static int debug = -1;
module_param(debug, uint, 0600);
module_param(debug, int, 0600);
MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
static const u32 default_msg =
......
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