gpio: pca953x: Switch to bitops in IRQ callbacks
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Mon, 9 Dec 2019 12:35:44 +0000 (14:35 +0200)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Wed, 11 Dec 2019 09:48:49 +0000 (10:48 +0100)
commit2688302bf1924ebccab2a3b298dd50b4f744d48d
tree82eac5a6a55667f1fca88df5a4d8db9c983dd323
parent256efaea1fdc4e38970489197409a26125ee0aaa
gpio: pca953x: Switch to bitops in IRQ callbacks

Since we have driver converted to use bitmap API we must use
traditional bit operations (set_bit(), clear_bit(), etc.)
against it.

Currently IRQ callbacks are missed in the conversion and
thus broken.

Let's fix it right here right now.

Fixes: 35d13d94893f ("gpio: pca953x: convert to use bitmap API")
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
drivers/gpio/gpio-pca953x.c