xref: /linux/drivers/mmc/core/block.h (revision 81196976ed946cbf36bb41ddda402853c7df7cfa)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _MMC_CORE_BLOCK_H
3 #define _MMC_CORE_BLOCK_H
4 
5 struct mmc_queue;
6 struct request;
7 
8 void mmc_blk_issue_rq(struct mmc_queue *mq, struct request *req);
9 
10 enum mmc_issued;
11 
12 enum mmc_issued mmc_blk_mq_issue_rq(struct mmc_queue *mq, struct request *req);
13 void mmc_blk_mq_complete(struct request *req);
14 
15 struct work_struct;
16 
17 void mmc_blk_mq_complete_work(struct work_struct *work);
18 
19 #endif
20