Fix PLDM effector state set IDs

Now that the PLDM OEM state set headers are available, use those instead
of hardcoding the (now outdated) values.

Signed-off-by: Eddie James <eajames@linux.ibm.com>
Change-Id: Iaa526e9a2acc61743c533845472d4294082a5c6c
diff --git a/pldm.cpp b/pldm.cpp
index 085e19e..2848ed9 100644
--- a/pldm.cpp
+++ b/pldm.cpp
@@ -6,17 +6,10 @@
 #include <libpldm/entity.h>
 #include <libpldm/platform.h>
 #include <libpldm/state_set.h>
+#include <libpldm/state_set_oem_ibm.h>
 
 #include <phosphor-logging/log.hpp>
 
-#define PLDM_OEM_IBM_SBE_MAINTENANCE_STATE 32772
-#define SBE_RETRY_REQUIRED 0x2
-
-#define PLDM_OEM_IBM_SBE_HRESET_STATE 32775
-#define SBE_HRESET_NOT_READY 0x1
-#define SBE_HRESET_READY 0x2
-#define SBE_HRESET_FAILED 0x3
-
 namespace pldm
 {