qcacld-3.0: Correct NULL check when access function pointer

In function pld_pcie_uevent, pld_context->ops->uevent NULL check logic
is wrong so correct it.

Change-Id: I1bf9d8c8f5318b476761a458f5475107007dfa01
CRs-Fixed: 2058248
diff --git a/core/pld/src/pld_pcie.c b/core/pld/src/pld_pcie.c
index 38d97be..fb81518 100644
--- a/core/pld/src/pld_pcie.c
+++ b/core/pld/src/pld_pcie.c
@@ -201,7 +201,7 @@
 
 	data.uevent = status;
 
-	if (!pld_context->ops->uevent)
+	if (pld_context->ops->uevent)
 		pld_context->ops->uevent(&pdev->dev, &data);
 
 	return;