diff options
Diffstat (limited to 'drivers/mmc/host/tmio_mmc.h')
-rw-r--r-- | drivers/mmc/host/tmio_mmc.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/mmc/host/tmio_mmc.h b/drivers/mmc/host/tmio_mmc.h index 79446047ee78..0fedc78e3ea5 100644 --- a/drivers/mmc/host/tmio_mmc.h +++ b/drivers/mmc/host/tmio_mmc.h | |||
@@ -174,19 +174,17 @@ static inline int tmio_mmc_next_sg(struct tmio_mmc_host *host) | |||
174 | return --host->sg_len; | 174 | return --host->sg_len; |
175 | } | 175 | } |
176 | 176 | ||
177 | static inline char *tmio_mmc_kmap_atomic(struct tmio_mmc_host *host, | 177 | static inline char *tmio_mmc_kmap_atomic(struct scatterlist *sg, |
178 | unsigned long *flags) | 178 | unsigned long *flags) |
179 | { | 179 | { |
180 | struct scatterlist *sg = host->sg_ptr; | ||
181 | |||
182 | local_irq_save(*flags); | 180 | local_irq_save(*flags); |
183 | return kmap_atomic(sg_page(sg), KM_BIO_SRC_IRQ) + sg->offset; | 181 | return kmap_atomic(sg_page(sg), KM_BIO_SRC_IRQ) + sg->offset; |
184 | } | 182 | } |
185 | 183 | ||
186 | static inline void tmio_mmc_kunmap_atomic(struct tmio_mmc_host *host, | 184 | static inline void tmio_mmc_kunmap_atomic(void *virt, |
187 | unsigned long *flags) | 185 | unsigned long *flags) |
188 | { | 186 | { |
189 | kunmap_atomic(sg_page(host->sg_ptr), KM_BIO_SRC_IRQ); | 187 | kunmap_atomic(virt, KM_BIO_SRC_IRQ); |
190 | local_irq_restore(*flags); | 188 | local_irq_restore(*flags); |
191 | } | 189 | } |
192 | 190 | ||