Fix some inconsistent whitespace.

Part-of: <https://gitlab.freedesktop.org/libinput/libinput/-/merge_requests/1254>
This commit is contained in:
Wren Turkal 2025-06-29 17:00:15 -07:00
parent 812bcd68f7
commit 60abf15755

View file

@ -71,22 +71,22 @@ struct libinput_plugin_interface {
struct libinput_device *device, struct libinput_device *device,
struct libevdev *evdev, struct libevdev *evdev,
struct udev_device *udev_device); struct udev_device *udev_device);
/** /**
* Notification that a device (previously announced with device_new) * Notification that a device (previously announced with device_new)
* was ignored by libinput and was **never** added as struct * was ignored by libinput and was **never** added as struct
* libinput_device. * libinput_device.
* *
* If a device was added (device_added) then this callback will * If a device was added (device_added) then this callback will
* not be called for that device. * not be called for that device.
*/ */
void (*device_ignored)(struct libinput_plugin *plugin, void (*device_ignored)(struct libinput_plugin *plugin,
struct libinput_device *device); struct libinput_device *device);
/** /**
* Notification that a device was added to libinput. Called * Notification that a device was added to libinput. Called
* after the device_new callback if the device matches libinput's * after the device_new callback if the device matches libinput's
* expectations. * expectations.
*/ */
void (*device_added)(struct libinput_plugin *plugin, void (*device_added)(struct libinput_plugin *plugin,
struct libinput_device *device); struct libinput_device *device);
/** /**
* Notification that a previously added device was removed. * Notification that a previously added device was removed.