]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
iio: temperature: tmp006: Use aligned_s64 instead of open coding alignment.
authorJonathan Cameron <Jonathan.Cameron@huawei.com>
Sun, 15 Dec 2024 18:28:54 +0000 (18:28 +0000)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sat, 28 Dec 2024 14:28:14 +0000 (14:28 +0000)
Use this new type to both slightly simplify the code and avoid
confusing static analysis tools. Mostly this series is about consistency
to avoid this code pattern getting copied into more drivers.

Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://patch.msgid.link/20241215182912.481706-4-jic23@kernel.org
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/temperature/tmp006.c

index 0c844137d7aa907429a125687f1c91f697d1b878..7beaabc9ecc759a2f69019cd8d92f13dccb237e3 100644 (file)
@@ -248,7 +248,7 @@ static irqreturn_t tmp006_trigger_handler(int irq, void *p)
        struct tmp006_data *data = iio_priv(indio_dev);
        struct {
                s16 channels[2];
-               s64 ts __aligned(8);
+               aligned_s64 ts;
        } scan;
        s32 ret;