From: Javier Carrasco Date: Fri, 5 Jul 2024 18:27:28 +0000 (+0200) Subject: hwmon: (gsc-hwmon) constify read-only struct regmap_bus X-Git-Tag: v6.11-rc1~212^2~20 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0811b8b03bb30b82c84283dde1ff697bc192abc0;p=thirdparty%2Fkernel%2Flinux.git hwmon: (gsc-hwmon) constify read-only struct regmap_bus `gsc_hwmon_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 Link: https://lore.kernel.org/r/20240705-hwmon-const-regmap-v1-1-7cde543ba818@gmail.com Signed-off-by: Guenter Roeck --- diff --git a/drivers/hwmon/gsc-hwmon.c b/drivers/hwmon/gsc-hwmon.c index 0f2147699c917..cb2f01dc43266 100644 --- a/drivers/hwmon/gsc-hwmon.c +++ b/drivers/hwmon/gsc-hwmon.c @@ -39,7 +39,7 @@ struct gsc_hwmon_data { struct hwmon_chip_info chip; }; -static struct regmap_bus gsc_hwmon_regmap_bus = { +static const struct regmap_bus gsc_hwmon_regmap_bus = { .reg_read = gsc_read, .reg_write = gsc_write, };