From e99f0c995e21ada4ea4c9c93c0c24b8d6ed55eb2 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Mon, 23 Jun 2025 14:32:16 +1000 Subject: [PATCH] evdev: rename evdev_device_dispatch_one to evdev_device_dispatch_frame Because it now takes a frame as argument, no longer a single event. Part-of: --- src/evdev-plugin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/evdev-plugin.c b/src/evdev-plugin.c index d4f5154a..1d60789c 100644 --- a/src/evdev-plugin.c +++ b/src/evdev-plugin.c @@ -94,7 +94,7 @@ evdev_process_event(struct evdev_device *device, } static inline void -evdev_device_dispatch_one(struct libinput_plugin *plugin, +evdev_device_dispatch_frame(struct libinput_plugin *plugin, struct libinput_device *libinput_device, struct evdev_frame *frame) { @@ -143,7 +143,7 @@ static const struct libinput_plugin_interface interface = { .device_ignored = NULL, .device_added = evdev_plugin_device_added, .device_removed = NULL, - .evdev_frame = evdev_device_dispatch_one, + .evdev_frame = evdev_device_dispatch_frame, }; void