diff options
Diffstat (limited to 'drivers/media/video/saa7115.c')
-rw-r--r-- | drivers/media/video/saa7115.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/saa7115.c b/drivers/media/video/saa7115.c index ad60335544ff..41e5e518a47e 100644 --- a/drivers/media/video/saa7115.c +++ b/drivers/media/video/saa7115.c | |||
@@ -1459,7 +1459,7 @@ static int saa7115_probe(struct i2c_client *client) | |||
1459 | 1459 | ||
1460 | /* Check if the adapter supports the needed features */ | 1460 | /* Check if the adapter supports the needed features */ |
1461 | if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA)) | 1461 | if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA)) |
1462 | return 0; | 1462 | return -EIO; |
1463 | 1463 | ||
1464 | snprintf(client->name, sizeof(client->name) - 1, "saa7115"); | 1464 | snprintf(client->name, sizeof(client->name) - 1, "saa7115"); |
1465 | 1465 | ||
@@ -1478,7 +1478,7 @@ static int saa7115_probe(struct i2c_client *client) | |||
1478 | if (memcmp(name, "1f711", 5)) { | 1478 | if (memcmp(name, "1f711", 5)) { |
1479 | v4l_dbg(1, debug, client, "chip found @ 0x%x (ID %s) does not match a known saa711x chip.\n", | 1479 | v4l_dbg(1, debug, client, "chip found @ 0x%x (ID %s) does not match a known saa711x chip.\n", |
1480 | client->addr << 1, name); | 1480 | client->addr << 1, name); |
1481 | return 0; | 1481 | return -ENODEV; |
1482 | } | 1482 | } |
1483 | 1483 | ||
1484 | snprintf(client->name, sizeof(client->name) - 1, "saa711%d",chip_id); | 1484 | snprintf(client->name, sizeof(client->name) - 1, "saa711%d",chip_id); |