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: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
5d0d813d34
commit
5d096c3b26
@@ -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 =
|
||||
|
||||
Reference in New Issue
Block a user