Re: [PATCH v3 1/6] hid: new driver for PicoLCD device

From: Dmitry Torokhov
Date: Fri Mar 26 2010 - 02:57:13 EST


On Wed, Mar 24, 2010 at 11:40:22PM +0100, Bruno Prémont wrote:
> + for (i = 0; i < PICOLCD_KEYS; i++) {
> + int key = ((int *)idev->keycode)[i];

Keycodes are now short, not int. Also, just do:

input_set_capability(idev, EV_KEY, data->keycode[i]);

> + if (key < KEY_MAX && key >= 0)
> + input_set_capability(idev, EV_KEY, key);
--
Dmitry
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/