From f98db521ee9d1989f850d38dcd5423d3206d4a88 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Mon, 14 Jul 2025 13:14:49 +1000 Subject: [PATCH] plugin: remove a leftover function This one is no longer called, so no need to keep it around. Part-of: --- src/libinput-plugin-private.h | 5 ----- src/libinput-plugin.c | 9 --------- 2 files changed, 14 deletions(-) diff --git a/src/libinput-plugin-private.h b/src/libinput-plugin-private.h index 32d45649..5764ef98 100644 --- a/src/libinput-plugin-private.h +++ b/src/libinput-plugin-private.h @@ -47,8 +47,3 @@ libinput_plugin_notify_device_ignored(struct libinput_plugin *plugin, void libinput_plugin_notify_device_removed(struct libinput_plugin *plugin, struct libinput_device *device); - -void -libinput_plugin_notify_evdev_frame(struct libinput_plugin *plugin, - struct libinput_device *device, - struct evdev_frame *frame); diff --git a/src/libinput-plugin.c b/src/libinput-plugin.c index 7e734068..87ba8e7e 100644 --- a/src/libinput-plugin.c +++ b/src/libinput-plugin.c @@ -313,15 +313,6 @@ libinput_plugin_notify_device_removed(struct libinput_plugin *plugin, plugin->interface->device_removed(plugin, device); } -void -libinput_plugin_notify_evdev_frame(struct libinput_plugin *plugin, - struct libinput_device *device, - struct evdev_frame *frame) -{ - if (plugin->interface->evdev_frame) - plugin->interface->evdev_frame(plugin, device, frame); -} - void libinput_plugin_system_run(struct libinput_plugin_system *system) {