diff options
author | Pierre Ossman <drzeus@drzeus.cx> | 2006-12-23 14:03:02 -0500 |
---|---|---|
committer | Pierre Ossman <drzeus@drzeus.cx> | 2007-05-01 07:04:16 -0400 |
commit | 98ac2162699f7e9880683cb954891817f20b607c (patch) | |
tree | 27452d428e16edfe6d13d71f297adf5376d07bde /drivers/mmc/queue.h | |
parent | 29041dbe199b0dff392bf1b9d634357da0b3208f (diff) |
mmc: Move queue functions to mmc_block
The mmc block queue functions are tailored for the mmc_block
driver, so move those functions into that module.
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Diffstat (limited to 'drivers/mmc/queue.h')
-rw-r--r-- | drivers/mmc/queue.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/drivers/mmc/queue.h b/drivers/mmc/queue.h new file mode 100644 index 000000000000..c9f139e764f6 --- /dev/null +++ b/drivers/mmc/queue.h | |||
@@ -0,0 +1,32 @@ | |||
1 | #ifndef MMC_QUEUE_H | ||
2 | #define MMC_QUEUE_H | ||
3 | |||
4 | struct request; | ||
5 | struct task_struct; | ||
6 | |||
7 | struct mmc_queue { | ||
8 | struct mmc_card *card; | ||
9 | struct task_struct *thread; | ||
10 | struct semaphore thread_sem; | ||
11 | unsigned int flags; | ||
12 | struct request *req; | ||
13 | int (*prep_fn)(struct mmc_queue *, struct request *); | ||
14 | int (*issue_fn)(struct mmc_queue *, struct request *); | ||
15 | void *data; | ||
16 | struct request_queue *queue; | ||
17 | struct scatterlist *sg; | ||
18 | }; | ||
19 | |||
20 | struct mmc_io_request { | ||
21 | struct request *rq; | ||
22 | int num; | ||
23 | struct mmc_command selcmd; /* mmc_queue private */ | ||
24 | struct mmc_command cmd[4]; /* max 4 commands */ | ||
25 | }; | ||
26 | |||
27 | extern int mmc_init_queue(struct mmc_queue *, struct mmc_card *, spinlock_t *); | ||
28 | extern void mmc_cleanup_queue(struct mmc_queue *); | ||
29 | extern void mmc_queue_suspend(struct mmc_queue *); | ||
30 | extern void mmc_queue_resume(struct mmc_queue *); | ||
31 | |||
32 | #endif | ||