mirror of
https://github.com/torvalds/linux.git
synced 2026-06-04 04:23:35 +02:00
iio: accel: adxl367: Constify struct regmap_bus
`adxl367_spi_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 <javier.carrasco.cruz@gmail.com> Link: https://patch.msgid.link/20240703-iio-cont-regmap_bus-v1-1-34754f355b65@gmail.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
07465fe1b7
commit
c922c634bd
|
|
@ -72,7 +72,7 @@ static int adxl367_write(void *context, const void *val_buf, size_t val_size)
|
|||
return spi_sync(st->spi, &st->reg_write_msg);
|
||||
}
|
||||
|
||||
static struct regmap_bus adxl367_spi_regmap_bus = {
|
||||
static const struct regmap_bus adxl367_spi_regmap_bus = {
|
||||
.read = adxl367_read,
|
||||
.write = adxl367_write,
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user