mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 18:42:14 -04:00
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:
committed by
Hans Verkuil
parent
ef20527313
commit
3e80dbb464
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user