diff options
| author | Javier Carrasco <[email protected]> | 2024-07-03 23:04:46 +0200 |
|---|---|---|
| committer | Jonathan Cameron <[email protected]> | 2024-07-29 20:31:10 +0100 |
| commit | 48259265a3b41ec448d7cb1467fbed7bef1e108c (patch) | |
| tree | da981fb800dd05fab9541c04e0b503a9fe6b29e7 | |
| parent | 867ade7dc0756ff656e3b14afea87c8a35880a08 (diff) | |
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: Javier Carrasco <[email protected]>
Link: https://patch.msgid.link/[email protected]
Signed-off-by: Jonathan Cameron <[email protected]>
| -rw-r--r-- | drivers/iio/accel/bmi088-accel-spi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/accel/bmi088-accel-spi.c b/drivers/iio/accel/bmi088-accel-spi.c index 7b419a7b2478..df1adc059aa9 100644 --- a/drivers/iio/accel/bmi088-accel-spi.c +++ b/drivers/iio/accel/bmi088-accel-spi.c @@ -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); } -static struct regmap_bus bmi088_regmap_bus = { +static const struct regmap_bus bmi088_regmap_bus = { .write = bmi088_regmap_spi_write, .read = bmi088_regmap_spi_read, }; |