aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/media/video/tda8290.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/media/video/tda8290.c b/drivers/media/video/tda8290.c
index 245b202560b5..a39cb1f9e875 100644
--- a/drivers/media/video/tda8290.c
+++ b/drivers/media/video/tda8290.c
@@ -704,7 +704,7 @@ int tda829x_attach(struct tuner *t)
704 } 704 }
705 705
706 if (tda829x_find_tuner(fe) < 0) 706 if (tda829x_find_tuner(fe) < 0)
707 return -EINVAL; 707 goto fail;
708 708
709 if (priv->ver & TDA8290) { 709 if (priv->ver & TDA8290) {
710 tda8290_init_tuner(fe); 710 tda8290_init_tuner(fe);
@@ -717,6 +717,11 @@ int tda829x_attach(struct tuner *t)
717 t->mode = V4L2_TUNER_ANALOG_TV; 717 t->mode = V4L2_TUNER_ANALOG_TV;
718 718
719 return 0; 719 return 0;
720
721fail:
722 tda829x_release(fe);
723 fe->ops.analog_demod_ops = NULL;
724 return -EINVAL;
720} 725}
721EXPORT_SYMBOL_GPL(tda829x_attach); 726EXPORT_SYMBOL_GPL(tda829x_attach);
722 727