mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-09 23:00:21 +00:00
mfd: Set da903x bits if new value is different from the old one
It does not make sense to write new value only when all the bit_mask bits are zero. We need to write new value if the bit mask fields of new value is not equal to old value. Signed-off-by: Axel Lin <axel.lin@gmail.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:
parent
890c98e374
commit
af65e6cef4
@ -182,7 +182,7 @@ int da903x_set_bits(struct device *dev, int reg, uint8_t bit_mask)
|
|||||||
if (ret)
|
if (ret)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
if ((reg_val & bit_mask) == 0) {
|
if ((reg_val & bit_mask) != bit_mask) {
|
||||||
reg_val |= bit_mask;
|
reg_val |= bit_mask;
|
||||||
ret = __da903x_write(chip->client, reg, reg_val);
|
ret = __da903x_write(chip->client, reg, reg_val);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user