aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/cx25840
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/video/cx25840')
-rw-r--r--drivers/media/video/cx25840/cx25840-core.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/media/video/cx25840/cx25840-core.c b/drivers/media/video/cx25840/cx25840-core.c
index 1556e2fad4c1..6d2ca822a638 100644
--- a/drivers/media/video/cx25840/cx25840-core.c
+++ b/drivers/media/video/cx25840/cx25840-core.c
@@ -1078,6 +1078,10 @@ static int cx25840_probe(struct i2c_client *client)
1078 u32 id; 1078 u32 id;
1079 u16 device_id; 1079 u16 device_id;
1080 1080
1081 /* Check if the adapter supports the needed features */
1082 if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA))
1083 return -EIO;
1084
1081 v4l_dbg(1, cx25840_debug, client, "detecting cx25840 client on address 0x%x\n", client->addr << 1); 1085 v4l_dbg(1, cx25840_debug, client, "detecting cx25840 client on address 0x%x\n", client->addr << 1);
1082 1086
1083 device_id = cx25840_read(client, 0x101) << 8; 1087 device_id = cx25840_read(client, 0x101) << 8;
@@ -1093,7 +1097,7 @@ static int cx25840_probe(struct i2c_client *client)
1093 } 1097 }
1094 else { 1098 else {
1095 v4l_dbg(1, cx25840_debug, client, "cx25840 not found\n"); 1099 v4l_dbg(1, cx25840_debug, client, "cx25840 not found\n");
1096 return 0; 1100 return -ENODEV;
1097 } 1101 }
1098 1102
1099 state = kzalloc(sizeof(struct cx25840_state), GFP_KERNEL); 1103 state = kzalloc(sizeof(struct cx25840_state), GFP_KERNEL);