In function pld_pcie_uevent, pld_context->ops->uevent NULL check logic is wrong so correct it. Change-Id: I1bf9d8c8f5318b476761a458f5475107007dfa01 CRs-Fixed: 2058248
@@ -201,7 +201,7 @@ static void pld_pcie_uevent(struct pci_dev *pdev, uint32_t status)
data.uevent = status;
- if (!pld_context->ops->uevent)
+ if (pld_context->ops->uevent)
pld_context->ops->uevent(&pdev->dev, &data);
return;