diff options
Diffstat (limited to 'block/bsg.c')
-rw-r--r-- | block/bsg.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/block/bsg.c b/block/bsg.c index 9651ec7b87c..4cf703fd98b 100644 --- a/block/bsg.c +++ b/block/bsg.c @@ -769,12 +769,10 @@ static struct bsg_device *bsg_add_device(struct inode *inode, struct file *file) { struct bsg_device *bd; - int ret; #ifdef BSG_DEBUG unsigned char buf[32]; #endif - ret = blk_get_queue(rq); - if (ret) + if (!blk_get_queue(rq)) return ERR_PTR(-ENXIO); bd = bsg_alloc_device(); |