diff options
author | Javier Carrasco <javier.carrasco.cruz@gmail.com> | 2024-07-04 20:23:32 +0300 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2024-08-30 11:40:13 +0300 |
commit | 9bc6a6bb9f55c445c760874fee1297d29799c964 (patch) | |
tree | 0f0a73d4e835d6b1e54e3ed29c92eef84d69ea7c /drivers/mfd | |
parent | 3062ba3a4e6a89b4622599ac640d14f374c12cfa (diff) | |
download | linux-9bc6a6bb9f55c445c760874fee1297d29799c964.tar.xz |
mfd: gateworks-gsc: Constify struct regmap_bus
`gsc_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://lore.kernel.org/r/20240704-mfd-const-regmap_config-v2-22-0c8785b1331d@gmail.com
Signed-off-by: Lee Jones <lee@kernel.org>
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/gateworks-gsc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/gateworks-gsc.c b/drivers/mfd/gateworks-gsc.c index b02bfdc871e9..6ca867b8f5f1 100644 --- a/drivers/mfd/gateworks-gsc.c +++ b/drivers/mfd/gateworks-gsc.c @@ -160,7 +160,7 @@ static const struct of_device_id gsc_of_match[] = { }; MODULE_DEVICE_TABLE(of, gsc_of_match); -static struct regmap_bus gsc_regmap_bus = { +static const struct regmap_bus gsc_regmap_bus = { .reg_read = gsc_read, .reg_write = gsc_write, }; |