From: Javier Carrasco Date: Wed, 3 Jul 2024 21:04:45 +0000 (+0200) Subject: iio: accel: bma400: Constify struct regmap_bus X-Git-Tag: v6.12-rc1~39^2~37^2~224 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=867ade7dc0756ff656e3b14afea87c8a35880a08;p=thirdparty%2Fkernel%2Flinux.git iio: accel: bma400: Constify struct regmap_bus `bma400_regmap_bus` is not modified and can be declared as const to move its data to a read-only section. Signed-off-by: Javier Carrasco Link: https://patch.msgid.link/20240703-iio-cont-regmap_bus-v1-2-34754f355b65@gmail.com Signed-off-by: Jonathan Cameron --- diff --git a/drivers/iio/accel/bma400_spi.c b/drivers/iio/accel/bma400_spi.c index ec13c044b3047..765d8c4a4c4dd 100644 --- a/drivers/iio/accel/bma400_spi.c +++ b/drivers/iio/accel/bma400_spi.c @@ -53,7 +53,7 @@ static int bma400_regmap_spi_write(void *context, const void *data, return spi_write(spi, data, count); } -static struct regmap_bus bma400_regmap_bus = { +static const struct regmap_bus bma400_regmap_bus = { .read = bma400_regmap_spi_read, .write = bma400_regmap_spi_write, .read_flag_mask = BIT(7),