diff options
author | Christoph Hellwig <hch@lst.de> | 2010-08-07 12:17:56 -0400 |
---|---|---|
committer | Jens Axboe <jaxboe@fusionio.com> | 2010-08-07 12:17:56 -0400 |
commit | 33659ebbae262228eef4e0fe990f393d1f0ed941 (patch) | |
tree | fcb537f09359c8dad3a6f6e16dc4319562dc42cc /drivers/memstick | |
parent | 7e005f79791dcd58436c88ded4a7f5aed1b82147 (diff) |
block: remove wrappers for request type/flags
Remove all the trivial wrappers for the cmd_type and cmd_flags fields in
struct requests. This allows much easier grepping for different request
types instead of unwinding through macros.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
Diffstat (limited to 'drivers/memstick')
-rw-r--r-- | drivers/memstick/core/mspro_block.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/memstick/core/mspro_block.c b/drivers/memstick/core/mspro_block.c index 8327e248520a..56645408d225 100644 --- a/drivers/memstick/core/mspro_block.c +++ b/drivers/memstick/core/mspro_block.c | |||
@@ -805,7 +805,8 @@ static void mspro_block_start(struct memstick_dev *card) | |||
805 | 805 | ||
806 | static int mspro_block_prepare_req(struct request_queue *q, struct request *req) | 806 | static int mspro_block_prepare_req(struct request_queue *q, struct request *req) |
807 | { | 807 | { |
808 | if (!blk_fs_request(req) && !blk_pc_request(req)) { | 808 | if (req->cmd_type != REQ_TYPE_FS && |
809 | req->cmd_type != REQ_TYPE_BLOCK_PC) { | ||
809 | blk_dump_rq_flags(req, "MSPro unsupported request"); | 810 | blk_dump_rq_flags(req, "MSPro unsupported request"); |
810 | return BLKPREP_KILL; | 811 | return BLKPREP_KILL; |
811 | } | 812 | } |