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

Commit e5b87dde authored by Tony Truong's avatar Tony Truong
Browse files

msm: pcie: correct error checking for when notifying the client



This change corrects the error checking when Root Complex receives
an event and notifies the client about it.

Change-Id: Ib34bca17ccff6fd849bf1309bba465d65857ca07
Signed-off-by: default avatarTony Truong <truong@codeaurora.org>
parent 0c20c736
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -3495,13 +3495,13 @@ static void msm_pcie_notify_client(struct msm_pcie_dev_t *dev,
				"PCIe: Client of RC%d will recover the link later.\n",
				dev->rc_idx);
			return;
		}
	} else {
		PCIE_DBG2(dev,
			"PCIe: Client of RC%d does not have registration for event %d\n",
			dev->rc_idx, event);
	}
}
}

static void handle_wake_func(struct work_struct *work)
{