projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3373cbf
)
mmc: omap_hsmmc: No need to check DMA channel validity at module remove
author
Peter Ujfalusi
<
[email protected]
>
Tue, 3 Nov 2015 11:37:31 +0000
(13:37 +0200)
committer
Ulf Hansson
<
[email protected]
>
Tue, 22 Dec 2015 10:32:02 +0000
(11:32 +0100)
The driver will not probe without valid DMA channels so no need to check
if they are valid when the module is removed.
Signed-off-by: Peter Ujfalusi <
[email protected]
>
CC: Ulf Hansson <
[email protected]
>
Signed-off-by: Ulf Hansson <
[email protected]
>
drivers/mmc/host/omap_hsmmc.c
patch
|
blob
|
history
diff --git
a/drivers/mmc/host/omap_hsmmc.c
b/drivers/mmc/host/omap_hsmmc.c
index 7fb0753abe3041bc1814ebc14c1136d103b254e1..b6639ea0bf18dbd37ccf0d639073119353b418b6 100644
(file)
--- a/
drivers/mmc/host/omap_hsmmc.c
+++ b/
drivers/mmc/host/omap_hsmmc.c
@@
-2250,10
+2250,8
@@
static int omap_hsmmc_remove(struct platform_device *pdev)
pm_runtime_get_sync(host->dev);
mmc_remove_host(host->mmc);
- if (host->tx_chan)
- dma_release_channel(host->tx_chan);
- if (host->rx_chan)
- dma_release_channel(host->rx_chan);
+ dma_release_channel(host->tx_chan);
+ dma_release_channel(host->rx_chan);
pm_runtime_put_sync(host->dev);
pm_runtime_disable(host->dev);