diff options
| author | Chen-Yu Tsai <wens@csie.org> | 2018-12-04 04:04:57 -0500 |
|---|---|---|
| committer | Linus Walleij <linus.walleij@linaro.org> | 2018-12-07 07:32:19 -0500 |
| commit | 478b6767ad26ab86d9ecc341027dd09a87b1f997 (patch) | |
| tree | 1bd7b6c627f8c3e184f0b728077fe19109021356 | |
| parent | 614b1868a125a0ba24be08f3a7fa832ddcde6bca (diff) | |
pinctrl: sunxi: a83t: Fix IRQ offset typo for PH11
Pin PH11 is used on various A83T board to detect a change in the OTG
port's ID pin, as in when an OTG host cable is plugged in.
The incorrect offset meant the gpiochip/irqchip was activating the wrong
pin for interrupts.
Fixes: 4730f33f0d82 ("pinctrl: sunxi: add allwinner A83T PIO controller support")
Cc: <stable@vger.kernel.org>
Signed-off-by: Chen-Yu Tsai <wens@csie.org>
Acked-by: Maxime Ripard <maxime.ripard@bootlin.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
| -rw-r--r-- | drivers/pinctrl/sunxi/pinctrl-sun8i-a83t.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/sunxi/pinctrl-sun8i-a83t.c b/drivers/pinctrl/sunxi/pinctrl-sun8i-a83t.c index 6624499eae72..4ada80317a3b 100644 --- a/drivers/pinctrl/sunxi/pinctrl-sun8i-a83t.c +++ b/drivers/pinctrl/sunxi/pinctrl-sun8i-a83t.c | |||
| @@ -568,7 +568,7 @@ static const struct sunxi_desc_pin sun8i_a83t_pins[] = { | |||
| 568 | SUNXI_PIN(SUNXI_PINCTRL_PIN(H, 11), | 568 | SUNXI_PIN(SUNXI_PINCTRL_PIN(H, 11), |
| 569 | SUNXI_FUNCTION(0x0, "gpio_in"), | 569 | SUNXI_FUNCTION(0x0, "gpio_in"), |
| 570 | SUNXI_FUNCTION(0x1, "gpio_out"), | 570 | SUNXI_FUNCTION(0x1, "gpio_out"), |
| 571 | SUNXI_FUNCTION_IRQ_BANK(0x6, 2, 1)), /* PH_EINT11 */ | 571 | SUNXI_FUNCTION_IRQ_BANK(0x6, 2, 11)), /* PH_EINT11 */ |
| 572 | }; | 572 | }; |
| 573 | 573 | ||
| 574 | static const struct sunxi_pinctrl_desc sun8i_a83t_pinctrl_data = { | 574 | static const struct sunxi_pinctrl_desc sun8i_a83t_pinctrl_data = { |
