genirq/chip: Add buslock back in to irq_set_handler()

The locking was changed from a buslock to a plain lock, but the patch
description states there was no functional change. Assuming this was
accidental so reverting to using the buslock.

Fixes: 5cd05f3e2315 ("genirq/chip: Rework irq_set_handler() variants")
Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://patch.msgid.link/20251023154901.1333755-2-ckeepax@opensource.cirrus.com

authored by Charles Keepax and committed by Thomas Gleixner 5d7e45dd 211ddde0

+1 -1
+1 -1
kernel/irq/chip.c
··· 1030 1030 void __irq_set_handler(unsigned int irq, irq_flow_handler_t handle, int is_chained, 1031 1031 const char *name) 1032 1032 { 1033 - scoped_irqdesc_get_and_lock(irq, 0) 1033 + scoped_irqdesc_get_and_buslock(irq, 0) 1034 1034 __irq_do_set_handler(scoped_irqdesc, handle, is_chained, name); 1035 1035 } 1036 1036 EXPORT_SYMBOL_GPL(__irq_set_handler);