projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1ce6a14
)
[media] tea6415c: return -EIO if i2c_check_functionality fails
author
Axel Lin
<axel.lin@gmail.com>
Mon, 1 Nov 2010 09:25:39 +0000
(06:25 -0300)
committer
Mauro Carvalho Chehab
<mchehab@redhat.com>
Wed, 29 Dec 2010 10:16:39 +0000
(08:16 -0200)
If the adapter does not support I2C_FUNC_SMBUS_WRITE_BYTE,
return -EIO instead of 0.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/video/tea6415c.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/media/video/tea6415c.c
b/drivers/media/video/tea6415c.c
index 3e99cea8e4dc87e46449be5352660b8b9ae48188..19621ed523ec605c6f55945eb43c1cf19dd5febb 100644
(file)
--- a/
drivers/media/video/tea6415c.c
+++ b/
drivers/media/video/tea6415c.c
@@
-148,7
+148,7
@@
static int tea6415c_probe(struct i2c_client *client,
/* let's see whether this adapter can support what we need */
if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_WRITE_BYTE))
- return
0
;
+ return
-EIO
;
v4l_info(client, "chip found @ 0x%x (%s)\n",
client->addr << 1, client->adapter->name);