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

Commit caa22249 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "serial: msm_serial_hs: Change the wakeup interrupt enable sequence"

parents 021bb0aa 747125be
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2221,12 +2221,12 @@ void enable_wakeup_interrupt(struct msm_hs_port *msm_uport)
		return;

	if (!(msm_uport->wakeup.enabled)) {
		enable_irq(msm_uport->wakeup.irq);
		disable_irq(uport->irq);
		spin_lock_irqsave(&uport->lock, flags);
		msm_uport->wakeup.ignore = 1;
		msm_uport->wakeup.enabled = true;
		spin_unlock_irqrestore(&uport->lock, flags);
		disable_irq(uport->irq);
		enable_irq(msm_uport->wakeup.irq);
	} else {
		MSM_HS_WARN("%s:Wake up IRQ already enabled", __func__);
	}