27 lines
774 B
Diff
27 lines
774 B
Diff
From a354165e58f937ee12c16ab48ce334b664c8f163 Mon Sep 17 00:00:00 2001
|
|
From: Bastien Nocera <hadess@hadess.net>
|
|
Date: Sun, 17 Jun 2012 01:29:01 +0200
|
|
Subject: [PATCH 3/3] fakehid: Use the same constant as declared
|
|
|
|
ps3remote_keymap[] uses 0xff as the max value, so should we.
|
|
---
|
|
input/fakehid.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/input/fakehid.c b/input/fakehid.c
|
|
index a125356..a758413 100644
|
|
--- a/input/fakehid.c
|
|
+++ b/input/fakehid.c
|
|
@@ -335,7 +335,7 @@ static int ps3remote_setup_uinput(struct fake_input *fake,
|
|
}
|
|
|
|
/* enabling keys */
|
|
- for (i = 0; i < 256; i++)
|
|
+ for (i = 0; i < 0xff; i++)
|
|
if (ps3remote_keymap[i] != KEY_RESERVED)
|
|
if (ioctl(fake->uinput, UI_SET_KEYBIT,
|
|
ps3remote_keymap[i]) < 0) {
|
|
--
|
|
1.7.10
|
|
|