diff options
author | Krzysztof Kozlowski <[email protected]> | 2024-04-14 16:07:32 +0200 |
---|---|---|
committer | Ulf Hansson <[email protected]> | 2024-04-26 06:47:04 +0200 |
commit | c5daec6479ffbf42e0262880eb310b0c95bf110b (patch) | |
tree | dab5d955737223029029cb47a841a9e8b134f181 | |
parent | bdbb201a61c89edd0a4652afde5e4c836887d799 (diff) |
mmc: sdhci-omap: Constify struct sdhci_ops
The local struct sdhci_ops can be made const for code safety.
Signed-off-by: Krzysztof Kozlowski <[email protected]>
Acked-by: Adrian Hunter <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Ulf Hansson <[email protected]>
-rw-r--r-- | drivers/mmc/host/sdhci-omap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci-omap.c b/drivers/mmc/host/sdhci-omap.c index 94076b095571..5841a9afeb9f 100644 --- a/drivers/mmc/host/sdhci-omap.c +++ b/drivers/mmc/host/sdhci-omap.c @@ -925,7 +925,7 @@ static void sdhci_omap_set_timeout(struct sdhci_host *host, __sdhci_set_timeout(host, cmd); } -static struct sdhci_ops sdhci_omap_ops = { +static const struct sdhci_ops sdhci_omap_ops = { .set_clock = sdhci_omap_set_clock, .set_power = sdhci_omap_set_power, .enable_dma = sdhci_omap_enable_dma, |