]> git.baikalelectronics.ru Git - kernel.git/commit
gpio: tc35894: fix up tc35894 interrupt configuration
authordillon min <dillon.minfei@gmail.com>
Thu, 3 Sep 2020 07:30:21 +0000 (15:30 +0800)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Wed, 9 Sep 2020 09:31:09 +0000 (11:31 +0200)
commitb4ba9ceedca1b10d11a3546b79ca6333d272dd9f
tree6efa13968eedd2170319319478e3f1bcdd167dfb
parenta7a1f4d4a34f6245ac4204f9978859bc7f00605e
gpio: tc35894: fix up tc35894 interrupt configuration

The offset of regmap is incorrect, j * 8 is move to the
wrong register.

for example:

asume i = 0, j = 1. we want to set KPY5 as interrupt
falling edge mode, regmap[0][1] should be TC3589x_GPIOIBE1 0xcd
but, regmap[i] + j * 8 = TC3589x_GPIOIBE0 + 8 ,point to 0xd4,
this is TC3589x_GPIOIE2 not TC3589x_GPIOIBE1.

Fixes: d66ae51428e1 ("gpio: Add TC35892 GPIO driver")
Cc: Cc: stable@vger.kernel.org
Signed-off-by: dillon min <dillon.minfei@gmail.com>
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
drivers/gpio/gpio-tc3589x.c