Add missed bits.h and convert to BIT() in lp50xx_set_banks(). Signed-off-by: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx> --- drivers/leds/leds-lp50xx.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/leds/leds-lp50xx.c b/drivers/leds/leds-lp50xx.c index 2b4981b5778d..0c6a5a9dd162 100644 --- a/drivers/leds/leds-lp50xx.c +++ b/drivers/leds/leds-lp50xx.c @@ -2,6 +2,7 @@ // TI LP50XX LED chip family driver // Copyright (C) 2018-20 Texas Instruments Incorporated - https://www.ti.com/ +#include <linux/bits.h> #include <linux/gpio/consumer.h> #include <linux/i2c.h> #include <linux/init.h> @@ -357,7 +358,7 @@ static int lp50xx_set_banks(struct lp50xx *priv, u32 led_banks[]) for (i = 0; i < priv->chip_info->max_modules; i++) { if (led_banks[i]) - bank_enable_mask |= (1 << led_banks[i]); + bank_enable_mask |= BIT(led_banks[i]); } led_config_lo = bank_enable_mask; -- 2.30.0