mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
media: ccs: Refactor register reading a little
Rework quirk and 8-bit only access functions with a single function that takes arguments. This is later extensible to support yet more flags. Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
e40f1bcbee
commit
2989a45717
@ -168,39 +168,36 @@ static int __ccs_read_addr(struct ccs_sensor *sensor, u32 reg, u32 *val,
|
||||
return 0;
|
||||
}
|
||||
|
||||
int ccs_read_addr_no_quirk(struct ccs_sensor *sensor, u32 reg, u32 *val)
|
||||
{
|
||||
return __ccs_read_addr(
|
||||
sensor, reg, val,
|
||||
ccs_needs_quirk(sensor, CCS_QUIRK_FLAG_8BIT_READ_ONLY));
|
||||
}
|
||||
|
||||
static int ccs_read_addr_quirk(struct ccs_sensor *sensor, u32 reg, u32 *val,
|
||||
bool force8)
|
||||
static int ccs_read_addr_raw(struct ccs_sensor *sensor, u32 reg, u32 *val,
|
||||
bool force8, bool quirk)
|
||||
{
|
||||
int rval;
|
||||
|
||||
*val = 0;
|
||||
rval = ccs_call_quirk(sensor, reg_access, false, ®, val);
|
||||
if (rval == -ENOIOCTLCMD)
|
||||
return 0;
|
||||
if (rval < 0)
|
||||
return rval;
|
||||
if (quirk) {
|
||||
*val = 0;
|
||||
rval = ccs_call_quirk(sensor, reg_access, false, ®, val);
|
||||
if (rval == -ENOIOCTLCMD)
|
||||
return 0;
|
||||
if (rval < 0)
|
||||
return rval;
|
||||
|
||||
if (force8)
|
||||
return __ccs_read_addr(sensor, reg, val, true);
|
||||
if (force8)
|
||||
return __ccs_read_addr(sensor, reg, val, true);
|
||||
}
|
||||
|
||||
return ccs_read_addr_no_quirk(sensor, reg, val);
|
||||
return __ccs_read_addr(sensor, reg, val,
|
||||
ccs_needs_quirk(sensor,
|
||||
CCS_QUIRK_FLAG_8BIT_READ_ONLY));
|
||||
}
|
||||
|
||||
int ccs_read_addr(struct ccs_sensor *sensor, u32 reg, u32 *val)
|
||||
{
|
||||
return ccs_read_addr_quirk(sensor, reg, val, false);
|
||||
return ccs_read_addr_raw(sensor, reg, val, false, true);
|
||||
}
|
||||
|
||||
int ccs_read_addr_8only(struct ccs_sensor *sensor, u32 reg, u32 *val)
|
||||
{
|
||||
return ccs_read_addr_quirk(sensor, reg, val, true);
|
||||
return ccs_read_addr_raw(sensor, reg, val, true, true);
|
||||
}
|
||||
|
||||
int ccs_write_addr_no_quirk(struct ccs_sensor *sensor, u32 reg, u32 val)
|
||||
|
Loading…
Reference in New Issue
Block a user