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) {