mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 08:43:31 +00:00
mmc: renesas-sdhi: constify renesas_sdhi_internal_dmac_dma_ops
The structure renesas_sdhi_internal_dmac_dma_ops is only passed as the second argument to renesas_sdhi_probe, which is const, so renesas_sdhi_internal_dmac_dma_ops can be const too. Done with the help of Coccinelle. Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
This commit is contained in:
parent
3671967641
commit
1015406809
1 changed files with 1 additions and 1 deletions
|
@ -233,7 +233,7 @@ renesas_sdhi_internal_dmac_release_dma(struct tmio_mmc_host *host)
|
|||
host->chan_rx = host->chan_tx = NULL;
|
||||
}
|
||||
|
||||
static struct tmio_mmc_dma_ops renesas_sdhi_internal_dmac_dma_ops = {
|
||||
static const struct tmio_mmc_dma_ops renesas_sdhi_internal_dmac_dma_ops = {
|
||||
.start = renesas_sdhi_internal_dmac_start_dma,
|
||||
.enable = renesas_sdhi_internal_dmac_enable_dma,
|
||||
.request = renesas_sdhi_internal_dmac_request_dma,
|
||||
|
|
Loading…
Add table
Reference in a new issue