diff options
| author | Javier Carrasco <[email protected]> | 2024-07-03 23:04:52 +0200 |
|---|---|---|
| committer | Jonathan Cameron <[email protected]> | 2024-07-29 20:31:10 +0100 |
| commit | 9abedf82c78505b9f9c8d9670cd06e67532eed71 (patch) | |
| tree | ffa29f52f11bd7fbe122dd1ffd20618bdaee6f31 | |
| parent | 36a697964d8c59105835daa1b1ef4c8b58068395 (diff) | |
iio: light: gp2ap002: Constify struct regmap_bus
`gp2ap002_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/light/gp2ap002.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/light/gp2ap002.c b/drivers/iio/light/gp2ap002.c index 7125e011a38a..f8b1d7dd6f5f 100644 --- a/drivers/iio/light/gp2ap002.c +++ b/drivers/iio/light/gp2ap002.c @@ -420,7 +420,7 @@ static int gp2ap002_regmap_i2c_write(void *context, unsigned int reg, return i2c_smbus_write_byte_data(i2c, reg, val); } -static struct regmap_bus gp2ap002_regmap_bus = { +static const struct regmap_bus gp2ap002_regmap_bus = { .reg_read = gp2ap002_regmap_i2c_read, .reg_write = gp2ap002_regmap_i2c_write, }; |