From 60abf1575560cb8e2220ae48a67e7f74b5dc70dd Mon Sep 17 00:00:00 2001 From: Wren Turkal Date: Sun, 29 Jun 2025 17:00:15 -0700 Subject: [PATCH] Fix some inconsistent whitespace. Part-of: --- src/libinput-plugin.h | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/libinput-plugin.h b/src/libinput-plugin.h index ddb0a5a3..fae9f446 100644 --- a/src/libinput-plugin.h +++ b/src/libinput-plugin.h @@ -71,22 +71,22 @@ struct libinput_plugin_interface { struct libinput_device *device, struct libevdev *evdev, struct udev_device *udev_device); - /** - * Notification that a device (previously announced with device_new) - * was ignored by libinput and was **never** added as struct - * libinput_device. - * - * If a device was added (device_added) then this callback will - * not be called for that device. - */ - void (*device_ignored)(struct libinput_plugin *plugin, + /** + * Notification that a device (previously announced with device_new) + * was ignored by libinput and was **never** added as struct + * libinput_device. + * + * If a device was added (device_added) then this callback will + * not be called for that device. + */ + void (*device_ignored)(struct libinput_plugin *plugin, struct libinput_device *device); - /** - * Notification that a device was added to libinput. Called - * after the device_new callback if the device matches libinput's - * expectations. - */ - void (*device_added)(struct libinput_plugin *plugin, + /** + * Notification that a device was added to libinput. Called + * after the device_new callback if the device matches libinput's + * expectations. + */ + void (*device_added)(struct libinput_plugin *plugin, struct libinput_device *device); /** * Notification that a previously added device was removed.