Commit 9842c621 authored by Javier Carrasco's avatar Javier Carrasco Committed by Lee Jones

mfd: intel-m10-bmc: Constify struct regmap_config

`m10bmc_pmci_regmap_config` and `intel_m10bmc_regmap_config` are not
modified and can be declared as const to move their data to a
read-only section.
Signed-off-by: default avatarJavier Carrasco <javier.carrasco.cruz@gmail.com>
Link: https://lore.kernel.org/r/20240704-mfd-const-regmap_config-v2-7-0c8785b1331d@gmail.comSigned-off-by: default avatarLee Jones <lee@kernel.org>
parent c3bd9a0f
...@@ -336,7 +336,7 @@ static const struct regmap_access_table m10bmc_pmci_access_table = { ...@@ -336,7 +336,7 @@ static const struct regmap_access_table m10bmc_pmci_access_table = {
.n_yes_ranges = ARRAY_SIZE(m10bmc_pmci_regmap_range), .n_yes_ranges = ARRAY_SIZE(m10bmc_pmci_regmap_range),
}; };
static struct regmap_config m10bmc_pmci_regmap_config = { static const struct regmap_config m10bmc_pmci_regmap_config = {
.reg_bits = 32, .reg_bits = 32,
.reg_stride = 4, .reg_stride = 4,
.val_bits = 32, .val_bits = 32,
......
...@@ -24,7 +24,7 @@ static const struct regmap_access_table m10bmc_access_table = { ...@@ -24,7 +24,7 @@ static const struct regmap_access_table m10bmc_access_table = {
.n_yes_ranges = ARRAY_SIZE(m10bmc_regmap_range), .n_yes_ranges = ARRAY_SIZE(m10bmc_regmap_range),
}; };
static struct regmap_config intel_m10bmc_regmap_config = { static const struct regmap_config intel_m10bmc_regmap_config = {
.reg_bits = 32, .reg_bits = 32,
.val_bits = 32, .val_bits = 32,
.reg_stride = 4, .reg_stride = 4,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment