drivers: led: lp5562: Fix use of logical or vs bitwise

We are or'ing bit flags so use '|' instead of '||'.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2019-03-14 13:27:16 -05:00 committed by Kumar Gala
parent 78618fbc8f
commit e1c6d11e66

View file

@ -917,7 +917,7 @@ static int lp5562_led_init(struct device *dev)
if (i2c_reg_write_byte(data->i2c, CONFIG_LP5562_I2C_ADDRESS,
LP5562_CONFIG,
(LP5562_CONFIG_INTERNAL_CLOCK ||
(LP5562_CONFIG_INTERNAL_CLOCK |
LP5562_CONFIG_PWRSAVE_EN))) {
LOG_ERR("Configuring LP5562 LED chip failed.");
return -EIO;