A call to 'pci_disable_device()' is missing in the error handling path.
In some cases, a call to 'free_irq()' may also be missing.
Reorder the error handling path, add some new labels and fix the 2 issues
mentionned above.
This way, the error handling path in more in line with 'cx8800_finidev()'
(i.e. the remove function)
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
        core = cx88_core_get(dev->pci);
        if (!core) {
                err = -EINVAL;
-               goto fail_free;
+               goto fail_disable;
        }
        dev->core = core;
 
                                       cc->step, cc->default_value);
                if (!vc) {
                        err = core->audio_hdl.error;
-                       goto fail_core;
+                       goto fail_irq;
                }
                vc->priv = (void *)cc;
        }
                                       cc->step, cc->default_value);
                if (!vc) {
                        err = core->video_hdl.error;
-                       goto fail_core;
+                       goto fail_irq;
                }
                vc->priv = (void *)cc;
                if (vc->id == V4L2_CID_CHROMA_AGC)
 
 fail_unreg:
        cx8800_unregister_video(dev);
-       free_irq(pci_dev->irq, dev);
        mutex_unlock(&core->lock);
+fail_irq:
+       free_irq(pci_dev->irq, dev);
 fail_core:
        core->v4ldev = NULL;
        cx88_core_put(core, dev->pci);
+fail_disable:
+       pci_disable_device(pci_dev);
 fail_free:
        kfree(dev);
        return err;