Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e91aafcb authored by Bruce Chen's avatar Bruce Chen Committed by Bartosz Golaszewski
Browse files

gpio: eic: sprd: Fix the incorrect EIC offset when toggling



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: 7bf0d7f6 ("gpio: eic: Add edge trigger emulation for EIC")
Cc: stable@vger.kernel.org
Signed-off-by: default avatarBruce Chen <bruce.chen@unisoc.com>
Signed-off-by: default avatarBaolin Wang <baolin.wang@linaro.org>
Signed-off-by: default avatarBartosz Golaszewski <bgolaszewski@baylibre.com>
parent be7ae45c
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -530,11 +530,12 @@ static void sprd_eic_handle_one_type(struct gpio_chip *chip)
		}

		for_each_set_bit(n, &reg, 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);
		}
	}
}