Commit 1e82d01b authored by Christophe JAILLET's avatar Christophe JAILLET Committed by Hans Verkuil

media: ov5693: Simplify an error message

dev_err_probe() already display the error code. There is no need to
duplicate it explicitly in the error message.
Signed-off-by: default avatarChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: default avatarDaniel Scally <dan.scally@ideasonboard.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
parent 98b95642
......@@ -404,8 +404,8 @@ static int ov5693_read_reg(struct ov5693_device *ov5693, u32 addr, u32 *value)
ret = i2c_transfer(client->adapter, msg, 2);
if (ret < 0)
return dev_err_probe(&client->dev, ret,
"Failed to read register 0x%04x: %d\n",
addr & OV5693_REG_ADDR_MASK, ret);
"Failed to read register 0x%04x\n",
addr & OV5693_REG_ADDR_MASK);
*value = 0;
for (i = 0; i < len; ++i) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment