diff options
author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | 2011-07-14 12:39:10 -0400 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2011-07-21 10:35:07 -0400 |
commit | 162f43e31c5a376ec16336e5d0ac973373d54c89 (patch) | |
tree | 366ce758f78683291ca7db913276611ffaca00fb /drivers/mmc/host/tmio_mmc.h | |
parent | 332bdb506f800d177f6657247347a253dd5b5be8 (diff) |
mmc: tmio: fix a deadlock
Currently the tmio-mmc driver contains a recursive runtime PM method
invocation, which leads to a deadlock on a mutex. Avoid it by taking
care not to request DMA too early.
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc/host/tmio_mmc.h')
-rw-r--r-- | drivers/mmc/host/tmio_mmc.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/mmc/host/tmio_mmc.h b/drivers/mmc/host/tmio_mmc.h index ba0d8e66001d..087d88023ba1 100644 --- a/drivers/mmc/host/tmio_mmc.h +++ b/drivers/mmc/host/tmio_mmc.h | |||
@@ -109,6 +109,7 @@ static inline void tmio_mmc_kunmap_atomic(struct scatterlist *sg, | |||
109 | 109 | ||
110 | #if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE) | 110 | #if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE) |
111 | void tmio_mmc_start_dma(struct tmio_mmc_host *host, struct mmc_data *data); | 111 | void tmio_mmc_start_dma(struct tmio_mmc_host *host, struct mmc_data *data); |
112 | void tmio_mmc_enable_dma(struct tmio_mmc_host *host, bool enable); | ||
112 | void tmio_mmc_request_dma(struct tmio_mmc_host *host, struct tmio_mmc_data *pdata); | 113 | void tmio_mmc_request_dma(struct tmio_mmc_host *host, struct tmio_mmc_data *pdata); |
113 | void tmio_mmc_release_dma(struct tmio_mmc_host *host); | 114 | void tmio_mmc_release_dma(struct tmio_mmc_host *host); |
114 | #else | 115 | #else |
@@ -117,6 +118,10 @@ static inline void tmio_mmc_start_dma(struct tmio_mmc_host *host, | |||
117 | { | 118 | { |
118 | } | 119 | } |
119 | 120 | ||
121 | static inline void tmio_mmc_enable_dma(struct tmio_mmc_host *host, bool enable) | ||
122 | { | ||
123 | } | ||
124 | |||
120 | static inline void tmio_mmc_request_dma(struct tmio_mmc_host *host, | 125 | static inline void tmio_mmc_request_dma(struct tmio_mmc_host *host, |
121 | struct tmio_mmc_data *pdata) | 126 | struct tmio_mmc_data *pdata) |
122 | { | 127 | { |