Fix to return error code -ENODEV from the error handling case
instead of 0(err maybe overwrited to 0 in the for loop), as
done elsewhere in this function.
[mchehab@s-opensource.com: remove a now uneeded set for err = -ENODEV]
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
        if (err)
                goto fail_core;
 
-       err = -ENODEV;
        for (i = 1; i <= core->board.num_frontends; i++) {
                struct vb2_queue *q;
 
                if (fe == NULL) {
                        printk(KERN_ERR "%s() failed to get frontend(%d)\n",
                                        __func__, i);
+                       err = -ENODEV;
                        goto fail_probe;
                }
                q = &fe->dvb.dvbq;