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

Commit a595fc51 authored by Thomas Gleixner's avatar Thomas Gleixner
Browse files

irqchip/mips-gic: Use irq_set_chip_handler_name_locked



Use irq_set_handler_name_locked() as it avoids a redundant lookup of
the irq descriptor.

Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Cc: Jiang Liu <jiang.liu@linux.intel.com>
Cc: Jason Cooper <jason@lakedaemon.net>
parent 0a2b6497
Loading
Loading
Loading
Loading
+6 −9
Original line number Diff line number Diff line
@@ -367,15 +367,12 @@ static int gic_set_type(struct irq_data *d, unsigned int type)
		break;
	}

	if (is_edge) {
		__irq_set_chip_handler_name_locked(d->irq,
						   &gic_edge_irq_controller,
	if (is_edge)
		irq_set_chip_handler_name_locked(d, &gic_edge_irq_controller,
						 handle_edge_irq, NULL);
	} else {
		__irq_set_chip_handler_name_locked(d->irq,
						   &gic_level_irq_controller,
	else
		irq_set_chip_handler_name_locked(d, &gic_level_irq_controller,
						 handle_level_irq, NULL);
	}
	spin_unlock_irqrestore(&gic_lock, flags);

	return 0;