diff options
| author | Javier Carrasco <[email protected]> | 2024-07-03 23:04:47 +0200 |
|---|---|---|
| committer | Jonathan Cameron <[email protected]> | 2024-07-29 20:31:10 +0100 |
| commit | 2a57a7df9f8d190ff80ba5d3c8e0f7f58fcda4a5 (patch) | |
| tree | a26e67f073d1221cd0e9c6e00af9fb1527c15255 | |
| parent | 48259265a3b41ec448d7cb1467fbed7bef1e108c (diff) | |
iio: adc: ad7091r8: Constify struct regmap_bus
`ad7091r8_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]>
Reviewed-by: Marcelo Schmitt <[email protected]>
Reviewed-by: Nuno Sa <[email protected]>
Link: https://patch.msgid.link/[email protected]
Signed-off-by: Jonathan Cameron <[email protected]>
| -rw-r--r-- | drivers/iio/adc/ad7091r8.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/adc/ad7091r8.c b/drivers/iio/adc/ad7091r8.c index 700564305057..c9e014d6a77c 100644 --- a/drivers/iio/adc/ad7091r8.c +++ b/drivers/iio/adc/ad7091r8.c @@ -159,7 +159,7 @@ static int ad7091r_regmap_bus_reg_write(void *context, unsigned int reg, return spi_write(spi, &st->tx_buf, 2); } -static struct regmap_bus ad7091r8_regmap_bus = { +static const struct regmap_bus ad7091r8_regmap_bus = { .reg_read = ad7091r_regmap_bus_reg_read, .reg_write = ad7091r_regmap_bus_reg_write, .reg_format_endian_default = REGMAP_ENDIAN_BIG, |