Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 76378
b: refs/heads/master
c: 1f3a4e3
h: refs/heads/master
v: v3
  • Loading branch information
Michael Krufky authored and Mauro Carvalho Chehab committed Jan 25, 2008
1 parent 77bc1c3 commit c2ae6b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 232fcefb55e67cf38176a1e5c188a04694445f11
refs/heads/master: 1f3a4e328549cb85aa032c4ee5dfda7886754154
6 changes: 3 additions & 3 deletions trunk/drivers/media/video/tda8290.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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 = {
Expand Down Expand Up @@ -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);

Expand Down

0 comments on commit c2ae6b9

Please sign in to comment.