Message ID | 20240705-hwmon-const-regmap-v1-1-7cde543ba818@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
Series | hwmon: (gsc-hwmon) constify read-only struct regmap_bus | expand |
On Fri, Jul 05, 2024 at 08:27:28PM +0200, Javier Carrasco wrote: > `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 <javier.carrasco.cruz@gmail.com> Applied. Thanks, Guenter
diff --git a/drivers/hwmon/gsc-hwmon.c b/drivers/hwmon/gsc-hwmon.c index 0f2147699c91..cb2f01dc4326 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, };
`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 <javier.carrasco.cruz@gmail.com> --- I missed this one when converting regmap_config to const. After this conversion, all read-only regmap_* structs in hwmon are declared as const. --- drivers/hwmon/gsc-hwmon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- base-commit: 0b58e108042b0ed28a71cd7edf5175999955b233 change-id: 20240705-hwmon-const-regmap-a1fef10fbd65 Best regards,