[PATCH] mmc: sdhci_am654: Constify struct regmap_config
From: Javier Carrasco
Date: Fri Jul 05 2024 - 06:51:39 EST
`sdhci_am654_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@xxxxxxxxx>
---
drivers/mmc/host/sdhci_am654.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mmc/host/sdhci_am654.c b/drivers/mmc/host/sdhci_am654.c
index 17ad32cfc0c3..64e10f7c9faa 100644
--- a/drivers/mmc/host/sdhci_am654.c
+++ b/drivers/mmc/host/sdhci_am654.c
@@ -90,7 +90,7 @@
/* Command Queue Host Controller Interface Base address */
#define SDHCI_AM654_CQE_BASE_ADDR 0x200
-static struct regmap_config sdhci_am654_regmap_config = {
+static const struct regmap_config sdhci_am654_regmap_config = {
.reg_bits = 32,
.val_bits = 32,
.reg_stride = 4,
---
base-commit: 0b58e108042b0ed28a71cd7edf5175999955b233
change-id: 20240705-sdhci_am654-const-regmap_config-f97903ce0e7f
Best regards,
--
Javier Carrasco <javier.carrasco.cruz@xxxxxxxxx>