From: David Lechner Date: Fri, 18 Apr 2025 20:08:53 +0000 (-0500) Subject: iio: orientation: hid-sensor-rotation: remove unnecessary alignment X-Git-Url: http://git.monstr.eu/?a=commitdiff_plain;h=b31a74075cb4ca2bb202a2e17d133ef3c9ee891f;p=linux-2.6-microblaze.git iio: orientation: hid-sensor-rotation: remove unnecessary alignment Remove __aligned(16) in the scan data struct in the hid-sensor-rotation driver. There is nothing in the code that requires this alignment. Signed-off-by: David Lechner Reviewed-by: Andy Shevchenko Link: https://patch.msgid.link/20250418-iio-orientation-hid-sensor-rotation-remove-alignment-v1-1-6da68eae7ecf@baylibre.com Signed-off-by: Jonathan Cameron --- diff --git a/drivers/iio/orientation/hid-sensor-rotation.c b/drivers/iio/orientation/hid-sensor-rotation.c index c4b18fd0fa76..e759f91a710a 100644 --- a/drivers/iio/orientation/hid-sensor-rotation.c +++ b/drivers/iio/orientation/hid-sensor-rotation.c @@ -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] __aligned(16); + s32 sampled_vals[4]; aligned_s64 timestamp; } scan; int scale_pre_decml;