From: Bart Van Assche Date: Tue, 29 Aug 2017 15:32:09 +0000 (-0700) Subject: skd: Remove blk_queue_bounce_limit() call X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=bf231981bef52eb4130d30ffc06a6fe256866602;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git skd: Remove blk_queue_bounce_limit() call Since sTec s1120 devices support 64-bit DMA it is not necessary to request data buffer bouncing. Hence remove the blk_queue_bounce_limit() call. Suggested-by: Christoph Hellwig Signed-off-by: Bart Van Assche Cc: Christoph Hellwig Cc: Hannes Reinecke Cc: Johannes Thumshirn Signed-off-by: Jens Axboe --- diff --git a/drivers/block/skd_main.c b/drivers/block/skd_main.c index 00a86252b3c5..f987ff601a4c 100644 --- a/drivers/block/skd_main.c +++ b/drivers/block/skd_main.c @@ -2844,7 +2844,6 @@ static int skd_cons_disk(struct skd_device *skdev) rc = PTR_ERR(q); goto err_out; } - blk_queue_bounce_limit(q, BLK_BOUNCE_HIGH); q->queuedata = skdev; q->nr_requests = skd_max_queue_depth / 2;