plugin: remove a leftover function

This one is no longer called, so no need to keep it around.

Part-of: <https://gitlab.freedesktop.org/libinput/libinput/-/merge_requests/1269>
This commit is contained in:
Peter Hutterer 2025-07-14 13:14:49 +10:00
parent 0b07e77c3e
commit f98db521ee
2 changed files with 0 additions and 14 deletions

View file

@ -47,8 +47,3 @@ libinput_plugin_notify_device_ignored(struct libinput_plugin *plugin,
void void
libinput_plugin_notify_device_removed(struct libinput_plugin *plugin, libinput_plugin_notify_device_removed(struct libinput_plugin *plugin,
struct libinput_device *device); struct libinput_device *device);
void
libinput_plugin_notify_evdev_frame(struct libinput_plugin *plugin,
struct libinput_device *device,
struct evdev_frame *frame);

View file

@ -313,15 +313,6 @@ libinput_plugin_notify_device_removed(struct libinput_plugin *plugin,
plugin->interface->device_removed(plugin, device); 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 void
libinput_plugin_system_run(struct libinput_plugin_system *system) libinput_plugin_system_run(struct libinput_plugin_system *system)
{ {