block: Fix the type of 'sts' in bsg_queue_rq()
authorBart Van Assche <bvanassche@acm.org>
Wed, 18 Dec 2019 00:23:29 +0000 (16:23 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 23 Jan 2020 07:22:44 +0000 (08:22 +0100)
commit7ecc610a30ddf02d08be0058fe788c4dd7bec487
tree5b932cdb801414f2b66ee9fe2924616c147aa8a8
parent51ba5ebd8df7c92caba4e3cdc2b65d6f56000d88
block: Fix the type of 'sts' in bsg_queue_rq()

commit c44a4edb20938c85b64a256661443039f5bffdea upstream.

This patch fixes the following sparse warnings:

block/bsg-lib.c:269:19: warning: incorrect type in initializer (different base types)
block/bsg-lib.c:269:19:    expected int sts
block/bsg-lib.c:269:19:    got restricted blk_status_t [usertype]
block/bsg-lib.c:286:16: warning: incorrect type in return expression (different base types)
block/bsg-lib.c:286:16:    expected restricted blk_status_t
block/bsg-lib.c:286:16:    got int [assigned] sts

Cc: Martin Wilck <mwilck@suse.com>
Fixes: d46fe2cb2dce ("block: drop device references in bsg_queue_rq()")
Signed-off-by: Bart Van Assche <bvanassche@acm.org>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
block/bsg-lib.c