aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Protopopov <[email protected]>2016-02-07 02:27:32 -0200
committerMauro Carvalho Chehab <[email protected]>2016-02-10 09:27:29 -0200
commitb888d232142c0ac111c7e82d1731c6fbd56fc1fe (patch)
treea41ca9d6dd01e20fc8f35aa08a48a5bd6aa1d06a
parent4f388a9210e2a2c1cd83a5580b74aa13876dbf14 (diff)
[media] media: i2c/adp1653: probe: fix erroneous return value
The adp1653_probe() function may return positive value EINVAL which is obviously wrong. Signed-off-by: Anton Protopopov <[email protected]> Signed-off-by: Sakari Ailus <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
-rw-r--r--drivers/media/i2c/adp1653.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/i2c/adp1653.c b/drivers/media/i2c/adp1653.c
index 7e9cbf757e95..fb7ed730d932 100644
--- a/drivers/media/i2c/adp1653.c
+++ b/drivers/media/i2c/adp1653.c
@@ -497,7 +497,7 @@ static int adp1653_probe(struct i2c_client *client,
if (!client->dev.platform_data) {
dev_err(&client->dev,
"Neither DT not platform data provided\n");
- return EINVAL;
+ return -EINVAL;
}
flash->platform_data = client->dev.platform_data;
}