Skip to content

Commit

Permalink
iio: chemical: atlas: Fix buffer alignment in iio_push_to_buffers_wit…
Browse files Browse the repository at this point in the history
…h_timestamp()

[ Upstream commit b0f5d8d ]

Variable location for the timestamp, so just use __aligned(8)
to ensure it is always possible to naturally align it.

Found during an audit of all calls of uses of
iio_push_to_buffers_with_timestamp()

Fixes tag is not accurate, but it will need manual backporting beyond
that point if anyone cares.

Fixes: 0d15190 ("iio: chemical: atlas-ph-sensor: rename atlas-ph-sensor to atlas-sensor")
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Cc: Matt Ranostay <matt.ranostay@konsulko.com>
Acked-by: Matt Ranostay <matt.ranostay@konsulko.com>
Link: https://lore.kernel.org/r/20210501171352.512953-6-jic23@kernel.org
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
jic23 authored and gregkh committed Jul 14, 2021
1 parent 93a5538 commit 1fa3107
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/iio/chemical/atlas-sensor.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ struct atlas_data {
struct regmap *regmap;
struct irq_work work;
unsigned int interrupt_enabled;

__be32 buffer[6]; /* 96-bit data + 32-bit pad + 64-bit timestamp */
/* 96-bit data + 32-bit pad + 64-bit timestamp */
__be32 buffer[6] __aligned(8);
};

static const struct regmap_config atlas_regmap_config = {
Expand Down

0 comments on commit 1fa3107

Please sign in to comment.