Update PLDM entity ID used for OCC active

New PLDM and hostboot code model the processor DCM separately from the
processor itself.  The previous entity ID value used in this code now
represents the DCM, so change to using the one that represents the
processor within the DCM since that is where the OCC resides.

Signed-off-by: Matt Spinler <spinler@us.ibm.com>
Change-Id: If71c18e323af8f1df89de082f323beedfa29cb54
diff --git a/pldm.cpp b/pldm.cpp
index f3cdf9b..0c3b983 100644
--- a/pldm.cpp
+++ b/pldm.cpp
@@ -79,7 +79,7 @@
             auto method = bus.new_method_call(

                 "xyz.openbmc_project.PLDM", "/xyz/openbmc_project/pldm",

                 "xyz.openbmc_project.PLDM.PDR", "FindStateSensorPDR");

-            method.append(tid, (uint16_t)PLDM_ENTITY_PROC_MODULE,

+            method.append(tid, (uint16_t)PLDM_ENTITY_PROC,

                           (uint16_t)PLDM_STATE_SET_OPERATIONAL_RUNNING_STATUS);

 

             auto responseMsg = bus.call(method);