Commit cab9a229 authored by Kumar Gala's avatar Kumar Gala Committed by Kumar Gala
Browse files

drivers: ipm: ipm_mhu: Fix typo bug in IRQ_CONNECT



The second paramater to IRQ_CONNECT for ipm_mhu_irq_config_func_0 should
be passing the priority, instead it passed the IRQ number.  Fix this to
pass priority (which matches ipm_mhu_irq_config_func_1).

Signed-off-by: default avatarKumar Gala <kumar.gala@linaro.org>
parent b68039f0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -198,7 +198,7 @@ static void ipm_mhu_irq_config_func_0(struct device *d)
{
	ARG_UNUSED(d);
	IRQ_CONNECT(DT_INST_IRQN(0),
			DT_INST_IRQN(0),
			DT_INST_IRQ(0, priority),
			ipm_mhu_isr,
			DEVICE_GET(mhu_0),
			0);