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

Commit e15bf3bc authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "mhi: core: Check for pm error state before asserting dev wake"

parents de6c9b76 c006fd5f
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -1517,6 +1517,11 @@ int __mhi_device_get_sync(struct mhi_controller *mhi_cntrl)
	int ret;

	read_lock_bh(&mhi_cntrl->pm_lock);
	if (MHI_PM_IN_ERROR_STATE(mhi_cntrl->pm_state)) {
		read_unlock_bh(&mhi_cntrl->pm_lock);
		return -EIO;
	}

	mhi_cntrl->wake_get(mhi_cntrl, true);
	read_unlock_bh(&mhi_cntrl->pm_lock);