forked from luck/tmp_suning_uos_patched
mfd: menelaus: Use macro for magic number
Use macro to check a register bit. Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi> Signed-off-by: Lee Jones <lee.jones@linaro.org>
This commit is contained in:
parent
1ea8684e1e
commit
dfe514b67a
|
@ -1216,7 +1216,7 @@ static int menelaus_probe(struct i2c_client *client,
|
|||
err = menelaus_read_reg(MENELAUS_VCORE_CTRL1);
|
||||
if (err < 0)
|
||||
goto fail;
|
||||
if (err & BIT(7))
|
||||
if (err & VCORE_CTRL1_HW_NSW)
|
||||
menelaus->vcore_hw_mode = 1;
|
||||
else
|
||||
menelaus->vcore_hw_mode = 0;
|
||||
|
|
Loading…
Reference in New Issue
Block a user