Skip to content
Snippets Groups Projects
Commit 48259265 authored by Javier Carrasco's avatar Javier Carrasco Committed by Jonathan Cameron
Browse files

iio: accel: bmi088: Constify struct regmap_bus


`bmi088_regmap_bus` is not modified and can be declared as const to
move its data to a read-only section.

Signed-off-by: default avatarJavier Carrasco <javier.carrasco.cruz@gmail.com>
Link: https://patch.msgid.link/20240703-iio-cont-regmap_bus-v1-3-34754f355b65@gmail.com


Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 867ade7d
No related branches found
No related tags found
No related merge requests found
...@@ -36,7 +36,7 @@ static int bmi088_regmap_spi_read(void *context, const void *reg, ...@@ -36,7 +36,7 @@ static int bmi088_regmap_spi_read(void *context, const void *reg,
return spi_write_then_read(spi, addr, sizeof(addr), val, val_size); return spi_write_then_read(spi, addr, sizeof(addr), val, val_size);
} }
static struct regmap_bus bmi088_regmap_bus = { static const struct regmap_bus bmi088_regmap_bus = {
.write = bmi088_regmap_spi_write, .write = bmi088_regmap_spi_write,
.read = bmi088_regmap_spi_read, .read = bmi088_regmap_spi_read,
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment