diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-10 17:57:52 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-10 17:57:52 -0400 |
commit | 4c75f7416f51b0c6855952467a5db04f9c598f09 (patch) | |
tree | dbe06f7e69d68cf99b20567577c9c5488e4e1e8c /drivers/mmc/card/queue.h | |
parent | 6ed911fb04886c5510a41cd89203b931b1c5d261 (diff) | |
parent | ed99c541e0a15281c57530d54a4a5e3272f74fb9 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/drzeus/mmc
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/drzeus/mmc:
mmc: at91_mci: fix hanging and rework to match flowcharts
mmc: at91_mci typo
sdhci: Fix "Unexpected interrupt" handling
mmc: fix silly copy-and-paste error
mmc: move layer init and workqueue to core file
mmc: refactor host class handling
mmc: refactor bus operations
sdhci: add ene controller id
mmc: bounce requests for simple hosts
Diffstat (limited to 'drivers/mmc/card/queue.h')
-rw-r--r-- | drivers/mmc/card/queue.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/mmc/card/queue.h b/drivers/mmc/card/queue.h index 1590b3f3f1f7..64e66e0d4994 100644 --- a/drivers/mmc/card/queue.h +++ b/drivers/mmc/card/queue.h | |||
@@ -14,6 +14,9 @@ struct mmc_queue { | |||
14 | void *data; | 14 | void *data; |
15 | struct request_queue *queue; | 15 | struct request_queue *queue; |
16 | struct scatterlist *sg; | 16 | struct scatterlist *sg; |
17 | char *bounce_buf; | ||
18 | struct scatterlist *bounce_sg; | ||
19 | unsigned int bounce_sg_len; | ||
17 | }; | 20 | }; |
18 | 21 | ||
19 | extern int mmc_init_queue(struct mmc_queue *, struct mmc_card *, spinlock_t *); | 22 | extern int mmc_init_queue(struct mmc_queue *, struct mmc_card *, spinlock_t *); |
@@ -21,4 +24,8 @@ extern void mmc_cleanup_queue(struct mmc_queue *); | |||
21 | extern void mmc_queue_suspend(struct mmc_queue *); | 24 | extern void mmc_queue_suspend(struct mmc_queue *); |
22 | extern void mmc_queue_resume(struct mmc_queue *); | 25 | extern void mmc_queue_resume(struct mmc_queue *); |
23 | 26 | ||
27 | extern unsigned int mmc_queue_map_sg(struct mmc_queue *); | ||
28 | extern void mmc_queue_bounce_pre(struct mmc_queue *); | ||
29 | extern void mmc_queue_bounce_post(struct mmc_queue *); | ||
30 | |||
24 | #endif | 31 | #endif |