Commit 2f45861d authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] psmouse warning fix

Fix a warning on 64-bit machines.
parent 1e9c0d3b
...@@ -31,7 +31,7 @@ module_param(psmouse_noext, int, 0); ...@@ -31,7 +31,7 @@ module_param(psmouse_noext, int, 0);
MODULE_PARM_DESC(psmouse_noext, "[DEPRECATED] Disable any protocol extensions. Useful for KVM switches."); MODULE_PARM_DESC(psmouse_noext, "[DEPRECATED] Disable any protocol extensions. Useful for KVM switches.");
static char *psmouse_proto; static char *psmouse_proto;
static unsigned int psmouse_max_proto = -1UL; static unsigned int psmouse_max_proto = -1U;
module_param(psmouse_proto, charp, 0); module_param(psmouse_proto, charp, 0);
MODULE_PARM_DESC(psmouse_proto, "Highest protocol extension to probe (bare, imps, exps). Useful for KVM switches."); MODULE_PARM_DESC(psmouse_proto, "Highest protocol extension to probe (bare, imps, exps). Useful for KVM switches.");
......
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