Commit 6171212e authored by Lizhe's avatar Lizhe Committed by Linus Walleij
Browse files

pinctrl: microchip: Remove redundant clearing of IRQ_TYPE_SENSE_MASK



Before executing microchip_sgpio_irq_set_type(),
type has already been cleared IRQ_TYPE_SENSE_MASK, see __irq_set_trigger().

Signed-off-by: default avatarLizhe <sensor1010@163.com>
Link: https://lore.kernel.org/r/20230519170716.3459-1-sensor1010@163.com


Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 44825e5e
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -719,8 +719,6 @@ static void microchip_sgpio_irq_ack(struct irq_data *data)

static int microchip_sgpio_irq_set_type(struct irq_data *data, unsigned int type)
{
	type &= IRQ_TYPE_SENSE_MASK;

	switch (type) {
	case IRQ_TYPE_EDGE_BOTH:
		irq_set_handler_locked(data, handle_edge_irq);