mfd: twl6030-irq: Extinguish coding style warnings
This is part of an effort to clean-up the MFD subsystem. WARNING: please, no space before tabs +^IRSV_INTR_OFFSET, ^I/* Bit 12^IReserved^I^I*/$ WARNING: Missing a blank line after declarations + u8 unmask_value; + ret = twl_i2c_read_u8(TWL_MODULE_PIH, &unmask_value, WARNING: Missing a blank line after declarations + u8 mask_value; + ret = twl_i2c_read_u8(TWL_MODULE_PIH, &mask_value, total: 0 errors, 3 warnings, 484 lines checked Signed-off-by: Lee Jones <lee.jones@linaro.org>
This commit is contained in:
parent
6db1c9ba9d
commit
3103de8cd4
1 changed files with 3 additions and 1 deletions
|
@ -245,6 +245,7 @@ int twl6030_interrupt_unmask(u8 bit_mask, u8 offset)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
u8 unmask_value;
|
u8 unmask_value;
|
||||||
|
|
||||||
ret = twl_i2c_read_u8(TWL_MODULE_PIH, &unmask_value,
|
ret = twl_i2c_read_u8(TWL_MODULE_PIH, &unmask_value,
|
||||||
REG_INT_STS_A + offset);
|
REG_INT_STS_A + offset);
|
||||||
unmask_value &= (~(bit_mask));
|
unmask_value &= (~(bit_mask));
|
||||||
|
@ -258,6 +259,7 @@ int twl6030_interrupt_mask(u8 bit_mask, u8 offset)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
u8 mask_value;
|
u8 mask_value;
|
||||||
|
|
||||||
ret = twl_i2c_read_u8(TWL_MODULE_PIH, &mask_value,
|
ret = twl_i2c_read_u8(TWL_MODULE_PIH, &mask_value,
|
||||||
REG_INT_STS_A + offset);
|
REG_INT_STS_A + offset);
|
||||||
mask_value |= (bit_mask);
|
mask_value |= (bit_mask);
|
||||||
|
|
Loading…
Add table
Reference in a new issue