mirror of https://gitee.com/openkylin/linux.git
media: atomisp: Deduplicate return ret in gmin_i2c_write()
Deduplicate return ret in gmin_i2c_write(). While here, replace 'Kernel' by 'kernel' in the message and reduce amount of LOCs. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
2e31e6f89c
commit
e4fb745c95
|
@ -413,16 +413,12 @@ static int gmin_i2c_write(struct device *dev, u16 i2c_addr, u8 reg,
|
||||||
"I2C write, addr: 0x%02x, reg: 0x%02x, value: 0x%02x, mask: 0x%02x\n",
|
"I2C write, addr: 0x%02x, reg: 0x%02x, value: 0x%02x, mask: 0x%02x\n",
|
||||||
i2c_addr, reg, value, mask);
|
i2c_addr, reg, value, mask);
|
||||||
|
|
||||||
ret = intel_soc_pmic_exec_mipi_pmic_seq_element(i2c_addr, reg,
|
ret = intel_soc_pmic_exec_mipi_pmic_seq_element(i2c_addr, reg, value, mask);
|
||||||
value, mask);
|
if (ret == -EOPNOTSUPP)
|
||||||
|
|
||||||
if (ret == -EOPNOTSUPP) {
|
|
||||||
dev_err(dev,
|
dev_err(dev,
|
||||||
"ACPI didn't mapped the OpRegion needed to access I2C address 0x%02x.\n"
|
"ACPI didn't mapped the OpRegion needed to access I2C address 0x%02x.\n"
|
||||||
"Need to compile the Kernel using CONFIG_*_PMIC_OPREGION settings\n",
|
"Need to compile the kernel using CONFIG_*_PMIC_OPREGION settings\n",
|
||||||
i2c_addr);
|
i2c_addr);
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue