media: i2c: ds90ub913: Align ub913_read() with other similar functions

Adjust the ub913_read() to have similar form than the other similar
functions in ub9xx drivers. This makes it easier to deal with all the
read/write functions with a semantic patch.

Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Signed-off-by: Jai Luthra <jai.luthra@ideasonboard.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
This commit is contained in:
Tomi Valkeinen
2025-03-03 21:32:06 +05:30
committed by Hans Verkuil
parent ef20527313
commit 3e80dbb464

View File

@@ -125,14 +125,16 @@ static int ub913_read(const struct ub913_data *priv, u8 reg, u8 *val)
int ret;
ret = regmap_read(priv->regmap, reg, &v);
if (ret < 0) {
if (ret) {
dev_err(&priv->client->dev,
"Cannot read register 0x%02x: %d!\n", reg, ret);
return ret;
goto out;
}
*val = v;
return 0;
out:
return ret;
}
static int ub913_write(const struct ub913_data *priv, u8 reg, u8 val)