diff options
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/joystick/grip_mp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/input/joystick/grip_mp.c b/drivers/input/joystick/grip_mp.c index 555319e6378c..4ed3a3eadf19 100644 --- a/drivers/input/joystick/grip_mp.c +++ b/drivers/input/joystick/grip_mp.c | |||
@@ -320,10 +320,10 @@ static int multiport_io(struct gameport* gameport, int sendflags, int sendcode, | |||
320 | 320 | ||
321 | static int dig_mode_start(struct gameport *gameport, u32 *packet) | 321 | static int dig_mode_start(struct gameport *gameport, u32 *packet) |
322 | { | 322 | { |
323 | int i, seq_len = sizeof(init_seq)/sizeof(int); | 323 | int i; |
324 | int flags, tries = 0, bads = 0; | 324 | int flags, tries = 0, bads = 0; |
325 | 325 | ||
326 | for (i = 0; i < seq_len; i++) { /* Send magic sequence */ | 326 | for (i = 0; i < ARRAY_SIZE(init_seq); i++) { /* Send magic sequence */ |
327 | if (init_seq[i]) | 327 | if (init_seq[i]) |
328 | gameport_trigger(gameport); | 328 | gameport_trigger(gameport); |
329 | udelay(GRIP_INIT_DELAY); | 329 | udelay(GRIP_INIT_DELAY); |