]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
iio: orientation: hid-sensor-rotation: fix quaternion alignment
authorDavid Lechner <dlechner@baylibre.com>
Sat, 28 Feb 2026 20:02:23 +0000 (14:02 -0600)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Mon, 2 Mar 2026 20:53:16 +0000 (20:53 +0000)
Restore the alignment of sampled_vals to 16 bytes by using
IIO_DECLARE_QUATERNION(). This field contains a quaternion value which
has scan_type.repeat = 4 and storagebits = 32. So the alignment must
be 16 bytes to match the assumptions of iio_storage_bytes_for_si() and
also to not break userspace.

Reported-by: Lixu Zhang <lixu.zhang@intel.com>
Closes: https://bugzilla.kernel.org/show_bug.cgi?id=221077
Fixes: b31a74075cb4 ("iio: orientation: hid-sensor-rotation: remove unnecessary alignment")
Tested-by: Lixu Zhang <lixu.zhang@intel.com>
Signed-off-by: David Lechner <dlechner@baylibre.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@intel.com>
Cc: <Stable@vger.kernel.org>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/orientation/hid-sensor-rotation.c

index e759f91a710a2cdec8b708faab49c557e3418146..6806481873be2d842a80d3d04dd1dfc1e26c1cfa 100644 (file)
@@ -19,7 +19,7 @@ struct dev_rot_state {
        struct hid_sensor_common common_attributes;
        struct hid_sensor_hub_attribute_info quaternion;
        struct {
-               s32 sampled_vals[4];
+               IIO_DECLARE_QUATERNION(s32, sampled_vals);
                aligned_s64 timestamp;
        } scan;
        int scale_pre_decml;