diff options
author | Christoph Hellwig <hch@lst.de> | 2017-06-19 09:26:28 +0200 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2017-06-27 12:13:45 -0600 |
commit | 8298912bb6de7e3c9f86ad19d6488ac88cd0e940 (patch) | |
tree | 23192ac74a94c5b7f936372b3b662c0b7fb03608 | |
parent | 41341afa0fd7b086a1327e2b76ab0eb7a3661f25 (diff) | |
download | linux-8298912bb6de7e3c9f86ad19d6488ac88cd0e940.tar.bz2 |
mmc/block: remove a call to blk_queue_bounce_limit
BLK_BOUNCE_ANY is the defauly now, so the call is superflous.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r-- | drivers/mmc/core/queue.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/mmc/core/queue.c b/drivers/mmc/core/queue.c index 7f20298d892b..b659a28c8018 100644 --- a/drivers/mmc/core/queue.c +++ b/drivers/mmc/core/queue.c @@ -388,7 +388,6 @@ int mmc_init_queue(struct mmc_queue *mq, struct mmc_card *card, mmc_queue_setup_discard(mq->queue, card); if (card->bouncesz) { - blk_queue_bounce_limit(mq->queue, BLK_BOUNCE_ANY); blk_queue_max_hw_sectors(mq->queue, card->bouncesz / 512); blk_queue_max_segments(mq->queue, card->bouncesz / 512); blk_queue_max_segment_size(mq->queue, card->bouncesz); |