[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAMpxmJVBzOwZ7JaySzq1bZkEtwEfMSu_e8dGTSEiY6wG0d=KiQ@mail.gmail.com>
Date: Tue, 17 Sep 2019 10:09:07 +0200
From: Bartosz Golaszewski <bgolaszewski@...libre.com>
To: Baolin Wang <baolin.wang@...aro.org>
Cc: Linus Walleij <linus.walleij@...aro.org>,
Orson Zhai <orsonzhai@...il.com>,
Lyra Zhang <zhang.lyra@...il.com>, bruce.chen@...soc.com,
linux-gpio <linux-gpio@...r.kernel.org>,
LKML <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] gpio: eic: sprd: Fix the incorrect EIC offset when toggling
pon., 16 wrz 2019 o 11:57 Baolin Wang <baolin.wang@...aro.org> napisaĆ(a):
>
> From: Bruce Chen <bruce.chen@...soc.com>
>
> When toggling the level trigger to emulate the edge trigger, the
> EIC offset is incorrect without adding the corresponding bank index,
> thus fix it.
>
> Fixes: 7bf0d7f62282 ("gpio: eic: Add edge trigger emulation for EIC")
> Signed-off-by: Bruce Chen <bruce.chen@...soc.com>
> Signed-off-by: Baolin Wang <baolin.wang@...aro.org>
> ---
> drivers/gpio/gpio-eic-sprd.c | 7 ++++---
> 1 file changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpio/gpio-eic-sprd.c b/drivers/gpio/gpio-eic-sprd.c
> index 7b9ac4a..090539f 100644
> --- a/drivers/gpio/gpio-eic-sprd.c
> +++ b/drivers/gpio/gpio-eic-sprd.c
> @@ -530,11 +530,12 @@ static void sprd_eic_handle_one_type(struct gpio_chip *chip)
> }
>
> for_each_set_bit(n, ®, SPRD_EIC_PER_BANK_NR) {
> - girq = irq_find_mapping(chip->irq.domain,
> - bank * SPRD_EIC_PER_BANK_NR + n);
> + u32 offset = bank * SPRD_EIC_PER_BANK_NR + n;
> +
> + girq = irq_find_mapping(chip->irq.domain, offset);
>
> generic_handle_irq(girq);
> - sprd_eic_toggle_trigger(chip, girq, n);
> + sprd_eic_toggle_trigger(chip, girq, offset);
> }
> }
> }
> --
> 1.7.9.5
>
Queued for fixes.
Bart
Powered by blists - more mailing lists