aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/media/video/tda8290.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/video/tda8290.c b/drivers/media/video/tda8290.c
index dd2399654654..18e6a09642fa 100644
--- a/drivers/media/video/tda8290.c
+++ b/drivers/media/video/tda8290.c
@@ -649,7 +649,7 @@ static int tda8290_probe(struct tuner_i2c_props *i2c_props)
649 return 0; 649 return 0;
650 } 650 }
651 651
652 return -1; 652 return -ENODEV;
653} 653}
654 654
655static int tda8295_probe(struct tuner_i2c_props *i2c_props) 655static int tda8295_probe(struct tuner_i2c_props *i2c_props)
@@ -669,7 +669,7 @@ static int tda8295_probe(struct tuner_i2c_props *i2c_props)
669 return 0; 669 return 0;
670 } 670 }
671 671
672 return -1; 672 return -ENODEV;
673} 673}
674 674
675static struct analog_tuner_ops tda8290_tuner_ops = { 675static struct analog_tuner_ops tda8290_tuner_ops = {
@@ -766,7 +766,7 @@ int tda829x_probe(struct tuner *t)
766 } 766 }
767 } 767 }
768 tuner_i2c_xfer_send(&i2c_props, restore_9886, 3); 768 tuner_i2c_xfer_send(&i2c_props, restore_9886, 3);
769 return -1; 769 return -ENODEV;
770} 770}
771EXPORT_SYMBOL_GPL(tda829x_probe); 771EXPORT_SYMBOL_GPL(tda829x_probe);
772 772