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

Commit 1b42aa80 authored by Hemant Kumar's avatar Hemant Kumar
Browse files

mhi: core: Remove verbose log from threaded interrupt handler



Verbose log out side the write lock is getting preempted by
other irq and incorrectly identified that mhi irq hogging
cpu when the other irq is responsible for that. Remove
verbose logging from mhi threaded irq which is not really
needed.

Change-Id: I1608d64a43600e662de9076642d0097e31b01a46
Signed-off-by: default avatarHemant Kumar <hemantk@codeaurora.org>
parent c1d17bef
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -1648,8 +1648,6 @@ irqreturn_t mhi_intvec_threaded_handlr(int irq_number, void *dev)
	enum MHI_PM_STATE pm_state = 0;
	enum mhi_ee ee = 0;

	MHI_VERB("Enter\n");

	write_lock_irq(&mhi_cntrl->pm_lock);
	if (!MHI_REG_ACCESS_VALID(mhi_cntrl->pm_state)) {
		write_unlock_irq(&mhi_cntrl->pm_lock);
@@ -1711,8 +1709,6 @@ irqreturn_t mhi_intvec_threaded_handlr(int irq_number, void *dev)
	}

exit_intvec:
	MHI_VERB("Exit\n");

	return IRQ_HANDLED;
}