[PATCH 1/3] evdev: use a separate function for configuring devices
Kristian Høgsberg
krh at bitplanet.net
Fri Aug 19 06:28:18 PDT 2011
On Fri, Aug 19, 2011 at 8:06 AM, Tiago Vignatti
<tiago.vignatti at intel.com> wrote:
> No semantical changes.
Yeah, looks good, that was due for a clean up.
Kristian
> Signed-off-by: Tiago Vignatti <tiago.vignatti at intel.com>
> ---
> compositor/evdev.c | 56 ++++++++++++++++++++++++++++++---------------------
> 1 files changed, 33 insertions(+), 23 deletions(-)
>
> diff --git a/compositor/evdev.c b/compositor/evdev.c
> index ff1cdaa..150ca04 100644
> --- a/compositor/evdev.c
> +++ b/compositor/evdev.c
> @@ -200,16 +200,44 @@ evdev_input_device_data(int fd, uint32_t mask, void *data)
> #define TEST_BIT(array, bit) ((array[LONG(bit)] >> OFF(bit)) & 1)
> /* end copied */
>
> +static void
> +evdev_configure_device(struct evdev_input_device *device)
> +{
> + struct input_absinfo absinfo;
> + unsigned long ev_bits[NBITS(EV_MAX)];
> + unsigned long abs_bits[NBITS(ABS_MAX)];
> + unsigned long key_bits[NBITS(KEY_MAX)];
> +
> + ioctl(device->fd, EVIOCGBIT(0, sizeof(ev_bits)), ev_bits);
> + if (TEST_BIT(ev_bits, EV_ABS)) {
> + ioctl(device->fd, EVIOCGBIT(EV_ABS, sizeof(abs_bits)),
> + abs_bits);
> + if (TEST_BIT(abs_bits, ABS_X)) {
> + ioctl(device->fd, EVIOCGABS(ABS_X), &absinfo);
> + device->min_x = absinfo.minimum;
> + device->max_x = absinfo.maximum;
> + }
> + if (TEST_BIT(abs_bits, ABS_Y)) {
> + ioctl(device->fd, EVIOCGABS(ABS_Y), &absinfo);
> + device->min_y = absinfo.minimum;
> + device->max_y = absinfo.maximum;
> + }
> + }
> + if (TEST_BIT(ev_bits, EV_KEY)) {
> + ioctl(device->fd, EVIOCGBIT(EV_KEY, sizeof(key_bits)),
> + key_bits);
> + if (TEST_BIT(key_bits, BTN_TOOL_FINGER) &&
> + !TEST_BIT(key_bits, BTN_TOOL_PEN))
> + device->is_touchpad = 1;
> + }
> +}
> +
> static struct evdev_input_device *
> evdev_input_device_create(struct evdev_input *master,
> struct wl_display *display, const char *path)
> {
> struct evdev_input_device *device;
> struct wl_event_loop *loop;
> - struct input_absinfo absinfo;
> - unsigned long ev_bits[NBITS(EV_MAX)];
> - unsigned long abs_bits[NBITS(ABS_MAX)];
> - unsigned long key_bits[NBITS(KEY_MAX)];
>
> device = malloc(sizeof *device);
> if (device == NULL)
> @@ -228,25 +256,7 @@ evdev_input_device_create(struct evdev_input *master,
> return NULL;
> }
>
> - ioctl(device->fd, EVIOCGBIT(0, sizeof(ev_bits)), ev_bits);
> - if (TEST_BIT(ev_bits, EV_ABS)) {
> - ioctl(device->fd, EVIOCGBIT(EV_ABS, sizeof(abs_bits)), abs_bits);
> - if (TEST_BIT(abs_bits, ABS_X)) {
> - ioctl(device->fd, EVIOCGABS(ABS_X), &absinfo);
> - device->min_x = absinfo.minimum;
> - device->max_x = absinfo.maximum;
> - }
> - if (TEST_BIT(abs_bits, ABS_Y)) {
> - ioctl(device->fd, EVIOCGABS(ABS_Y), &absinfo);
> - device->min_y = absinfo.minimum;
> - device->max_y = absinfo.maximum;
> - }
> - }
> - if (TEST_BIT(ev_bits, EV_KEY)) {
> - ioctl(device->fd, EVIOCGBIT(EV_KEY, sizeof(key_bits)), key_bits);
> - if (TEST_BIT(key_bits, BTN_TOOL_FINGER) && !TEST_BIT(key_bits, BTN_TOOL_PEN))
> - device->is_touchpad = 1;
> - }
> + evdev_configure_device(device);
>
> loop = wl_display_get_event_loop(display);
> device->source = wl_event_loop_add_fd(loop, device->fd,
> --
> 1.7.2.2
>
> _______________________________________________
> wayland-devel mailing list
> wayland-devel at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/wayland-devel
>
More information about the wayland-devel
mailing list