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: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
This commit is contained in:
Christophe JAILLET 2023-04-15 18:28:58 +02:00 committed by Hans Verkuil
parent 98b9564243
commit 1e82d01b88

View File

@ -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) {