From: Krzysztof Kozlowski Date: Sun, 14 Apr 2024 14:07:33 +0000 (+0200) Subject: mmc: sdhci-sprd: Constify struct sdhci_ops X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=8fc516cb223e7e759d24478c3152db14929d2266;p=linux.git mmc: sdhci-sprd: Constify struct sdhci_ops The local struct sdhci_ops can be made const for code safety. Signed-off-by: Krzysztof Kozlowski Acked-by: Adrian Hunter Reviewed-by: Baolin Wang Link: https://lore.kernel.org/r/20240414-mmc-const-sdhci-ops-v2-3-262f81faadac@kernel.org Signed-off-by: Ulf Hansson --- diff --git a/drivers/mmc/host/sdhci-sprd.c b/drivers/mmc/host/sdhci-sprd.c index 685b1c6489018..8776f42871196 100644 --- a/drivers/mmc/host/sdhci-sprd.c +++ b/drivers/mmc/host/sdhci-sprd.c @@ -439,7 +439,7 @@ static void sdhci_sprd_set_power(struct sdhci_host *host, unsigned char mode, } } -static struct sdhci_ops sdhci_sprd_ops = { +static const struct sdhci_ops sdhci_sprd_ops = { .read_l = sdhci_sprd_readl, .write_l = sdhci_sprd_writel, .write_w = sdhci_sprd_writew,