提交 2ce4f9d8 编写于 作者: J Jason Andryuk 提交者: John W. Linville

at76c50x-usb: convert at76_debug to an unsigned int

at76_debug should be an unsigned int as it used as a bit field.  In
fact, modprobe fails when trying to set at76_debug's high bit.
Signed-off-by: NJason Andryuk <jandryuk@gmail.com>
Signed-off-by: NKalle Valo <kalle.valo@iki.fi>
Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
上级 19e8bc7f
......@@ -109,7 +109,7 @@
} \
} while (0)
static int at76_debug = DBG_DEFAULTS;
static uint at76_debug = DBG_DEFAULTS;
/* Protect against concurrent firmware loading and parsing */
static struct mutex fw_mutex;
......@@ -2459,7 +2459,7 @@ static void __exit at76_mod_exit(void)
led_trigger_unregister_simple(ledtrig_tx);
}
module_param_named(debug, at76_debug, int, 0600);
module_param_named(debug, at76_debug, uint, 0600);
MODULE_PARM_DESC(debug, "Debugging level");
module_init(at76_mod_init);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册