mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-28 01:21:58 +00:00
Input: fix signedness warning in input_set_keycode()
The dev->getkeycode() method expects unsigned argument. Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
parent
e22739d02a
commit
fd6cf3dddf
1 changed files with 1 additions and 1 deletions
|
@ -694,7 +694,7 @@ int input_set_keycode(struct input_dev *dev,
|
||||||
unsigned int scancode, unsigned int keycode)
|
unsigned int scancode, unsigned int keycode)
|
||||||
{
|
{
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
int old_keycode;
|
unsigned int old_keycode;
|
||||||
int retval;
|
int retval;
|
||||||
|
|
||||||
if (keycode > KEY_MAX)
|
if (keycode > KEY_MAX)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue