blk_mq_init_queue() never returns NULL. There's no need for IS_ERR_OR_NULL()

Signed-off-by: Fabian Frederick <f...@skynet.be>
---
 drivers/block/loop.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/block/loop.c b/drivers/block/loop.c
index ae3fcb4..3fb23e9 100644
--- a/drivers/block/loop.c
+++ b/drivers/block/loop.c
@@ -1559,7 +1559,7 @@ static int loop_add(struct loop_device **l, int i)
                goto out_free_idr;
 
        lo->lo_queue = blk_mq_init_queue(&lo->tag_set);
-       if (IS_ERR_OR_NULL(lo->lo_queue)) {
+       if (IS_ERR(lo->lo_queue)) {
                err = PTR_ERR(lo->lo_queue);
                goto out_cleanup_tags;
        }
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to