[PATCH 1/3] hwmon: (ina238) Constify struct regmap_config

Javier Carrasco posted 3 patches 1 year, 5 months ago
[PATCH 1/3] hwmon: (ina238) Constify struct regmap_config
Posted by Javier Carrasco 1 year, 5 months ago
`ina238_regmap_config` 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>
---
 drivers/hwmon/ina238.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/hwmon/ina238.c b/drivers/hwmon/ina238.c
index 855626f1bc01..2d9f12f68d50 100644
--- a/drivers/hwmon/ina238.c
+++ b/drivers/hwmon/ina238.c
@@ -96,7 +96,7 @@
 #define INA238_BUS_VOLTAGE_LSB		3125 /* 3.125 mV/lsb */
 #define INA238_DIE_TEMP_LSB		125 /* 125 mC/lsb */
 
-static struct regmap_config ina238_regmap_config = {
+static const struct regmap_config ina238_regmap_config = {
 	.max_register = INA238_REGISTERS,
 	.reg_bits = 8,
 	.val_bits = 16,

-- 
2.40.1
Re: [PATCH 1/3] hwmon: (ina238) Constify struct regmap_config
Posted by Guenter Roeck 1 year, 5 months ago
On Tue, Jul 02, 2024 at 12:09:30PM +0200, Javier Carrasco wrote:
> `ina238_regmap_config` 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