diff options
author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | 2010-09-09 19:37:43 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-09-09 21:57:23 -0400 |
commit | 5600efb1bc2745d93ae0bc08130117a84f2b9d69 (patch) | |
tree | a755ad13e4d11d3e631590fca3babba22ffe7233 /drivers/mmc/host/tmio_mmc.h | |
parent | b78d6c5f51935ba89df8db33a57bacb547aa7325 (diff) |
mmc: fix the use of kunmap_atomic() in tmio_mmc.h
kunmap_atomic() takes the cookie, returned by the kmap_atomic() as its
argument and not the page address, used as an argument to kmap_atomic().
This patch fixes the compile error:
In file included from drivers/mmc/host/tmio_mmc.c:37:
drivers/mmc/host/tmio_mmc.h: In function 'tmio_mmc_kunmap_atomic':
drivers/mmc/host/tmio_mmc.h:192: error: negative width in bit-field '<anonymous>'
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Acked-by: Eric Miao <eric.y.miao@gmail.com>
Tested-by: Magnus Damm <damm@opensource.se>
Cc: <stable@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
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 | ||