From: Peter Hutterer Date: Fri, 11 Sep 2020 01:56:01 +0000 (+1000) Subject: doc: fix doxyen complaints after fd6c9b8ca0ec0791c X-Git-Tag: libevdev-1.9.901~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b40675c701d564c3a465018950041a682401cacd;p=platform%2Fupstream%2Flibevdev.git doc: fix doxyen complaints after fd6c9b8ca0ec0791c Fixes fd6c9b8ca0ec0791c9aca11314bcb39f9c08555b Signed-off-by: Peter Hutterer --- diff --git a/libevdev/libevdev.h b/libevdev/libevdev.h index ac97d9d..531207c 100644 --- a/libevdev/libevdev.h +++ b/libevdev/libevdev.h @@ -1704,7 +1704,7 @@ int libevdev_get_current_slot(const struct libevdev *dev); * * @param dev The evdev device, already initialized with libevdev_set_fd() * @param code One of ABS_X, ABS_Y, ... - * @param min The new minimum for this axis + * @param val The new minimum for this axis */ void libevdev_set_abs_minimum(struct libevdev *dev, unsigned int code, int val); @@ -1717,7 +1717,7 @@ void libevdev_set_abs_minimum(struct libevdev *dev, unsigned int code, int val); * * @param dev The evdev device, already initialized with libevdev_set_fd() * @param code One of ABS_X, ABS_Y, ... - * @param max The new maxium for this axis + * @param val The new maxium for this axis */ void libevdev_set_abs_maximum(struct libevdev *dev, unsigned int code, int val); @@ -1730,7 +1730,7 @@ void libevdev_set_abs_maximum(struct libevdev *dev, unsigned int code, int val); * * @param dev The evdev device, already initialized with libevdev_set_fd() * @param code One of ABS_X, ABS_Y, ... - * @param fuzz The new fuzz for this axis + * @param val The new fuzz for this axis */ void libevdev_set_abs_fuzz(struct libevdev *dev, unsigned int code, int val); @@ -1743,7 +1743,7 @@ void libevdev_set_abs_fuzz(struct libevdev *dev, unsigned int code, int val); * * @param dev The evdev device, already initialized with libevdev_set_fd() * @param code One of ABS_X, ABS_Y, ... - * @param flat The new flat for this axis + * @param val The new flat for this axis */ void libevdev_set_abs_flat(struct libevdev *dev, unsigned int code, int val); @@ -1756,7 +1756,7 @@ void libevdev_set_abs_flat(struct libevdev *dev, unsigned int code, int val); * * @param dev The evdev device, already initialized with libevdev_set_fd() * @param code One of ABS_X, ABS_Y, ... - * @param resolution The new axis resolution + * @param val The new axis resolution */ void libevdev_set_abs_resolution(struct libevdev *dev, unsigned int code, int val);