From: Pekka Paalanen Date: Fri, 3 Aug 2012 11:39:02 +0000 (+0300) Subject: evdev: make evdev_notify_keyboard_focus() independent of evdev_seat X-Git-Tag: 0.1.0~163^2~69 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1f6acefd70350a659e08c21979ac028031aafc36;p=platform%2Fupstream%2Flibinput.git evdev: make evdev_notify_keyboard_focus() independent of evdev_seat in preparation of removing evdev_seat Signed-off-by: Pekka Paalanen --- diff --git a/src/evdev.c b/src/evdev.c index bd14f14..40f6080 100644 --- a/src/evdev.c +++ b/src/evdev.c @@ -583,7 +583,8 @@ device_added(struct udev_device *udev_device, struct evdev_seat *master) } static void -evdev_notify_keyboard_focus(struct evdev_seat *seat) +evdev_notify_keyboard_focus(struct weston_seat *seat, + struct wl_list *evdev_devices) { struct evdev_input_device *device; struct wl_array keys; @@ -593,7 +594,7 @@ evdev_notify_keyboard_focus(struct evdev_seat *seat) int ret; memset(all_keys, 0, sizeof all_keys); - wl_list_for_each(device, &seat->devices_list, link) { + wl_list_for_each(device, evdev_devices, link) { memset(evdev_keys, 0, sizeof evdev_keys); ret = ioctl(device->fd, EVIOCGKEY(sizeof evdev_keys), evdev_keys); @@ -615,8 +616,7 @@ evdev_notify_keyboard_focus(struct evdev_seat *seat) } } - notify_keyboard_focus_in(&seat->base.seat, &keys, - STATE_UPDATE_AUTOMATIC); + notify_keyboard_focus_in(&seat->seat, &keys, STATE_UPDATE_AUTOMATIC); wl_array_release(&keys); } @@ -649,7 +649,7 @@ evdev_add_devices(struct udev *udev, struct weston_seat *seat_base) } udev_enumerate_unref(e); - evdev_notify_keyboard_focus(seat); + evdev_notify_keyboard_focus(&seat->base, &seat->devices_list); if (wl_list_empty(&seat->devices_list)) { weston_log(