From c2ae6b9d1fb246ce95972467a286ed2535ac884c Mon Sep 17 00:00:00 2001 From: Michael Krufky Date: Sun, 4 Nov 2007 10:51:28 -0300 Subject: [PATCH] --- yaml --- r: 76378 b: refs/heads/master c: 1f3a4e328549cb85aa032c4ee5dfda7886754154 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/drivers/media/video/tda8290.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/[refs] b/[refs] index 75a40405baa8..2acac0713657 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 232fcefb55e67cf38176a1e5c188a04694445f11 +refs/heads/master: 1f3a4e328549cb85aa032c4ee5dfda7886754154 diff --git a/trunk/drivers/media/video/tda8290.c b/trunk/drivers/media/video/tda8290.c index dd2399654654..18e6a09642fa 100644 --- a/trunk/drivers/media/video/tda8290.c +++ b/trunk/drivers/media/video/tda8290.c @@ -649,7 +649,7 @@ static int tda8290_probe(struct tuner_i2c_props *i2c_props) return 0; } - return -1; + return -ENODEV; } static int tda8295_probe(struct tuner_i2c_props *i2c_props) @@ -669,7 +669,7 @@ static int tda8295_probe(struct tuner_i2c_props *i2c_props) return 0; } - return -1; + return -ENODEV; } static struct analog_tuner_ops tda8290_tuner_ops = { @@ -766,7 +766,7 @@ int tda829x_probe(struct tuner *t) } } tuner_i2c_xfer_send(&i2c_props, restore_9886, 3); - return -1; + return -ENODEV; } EXPORT_SYMBOL_GPL(tda829x_probe);