Input: lm8323 - fix checking PWM interrupt status

INT_PWM1 is already a bitmask, not the bit number, so shifting by INT_PWM1 is
incorrect.

Signed-off-by: Nickolai Zeldovich <nickolai@csail.mit.edu>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

authored by Nickolai Zeldovich and committed by Dmitry Torokhov bec7a4bb e324ce61

Changed files
+1 -1
drivers
input
keyboard
+1 -1
drivers/input/keyboard/lm8323.c
··· 398 398 lm8323_configure(lm); 399 399 } 400 400 for (i = 0; i < LM8323_NUM_PWMS; i++) { 401 - if (ints & (1 << (INT_PWM1 + i))) { 401 + if (ints & (INT_PWM1 << i)) { 402 402 dev_vdbg(&lm->client->dev, 403 403 "pwm%d engine completed\n", i); 404 404 pwm_done(&lm->pwm[i]);