Add Drive Error Registry Message

This allows logging of drive errors.

Tested:

 "DriveError": {
            "Description": "Indicates that a Drive Error occurred of the specified type or cause.",
            "Message": "Drive Error Occurred: %1.",
            "NumberOfArgs": 1,
            "ParamTypes": [
                "string"
            ],
            "Resolution": "None.",
            "Severity": "Warning"
        }

Change-Id: Ic97611e26710f57b09a7f89e0470f1277f710d5d
Signed-off-by: James Feist <james.feist@linux.intel.com>
diff --git a/redfish-core/include/registries/openbmc_message_registry.hpp b/redfish-core/include/registries/openbmc_message_registry.hpp
index 99444d0..52f8e75 100644
--- a/redfish-core/include/registries/openbmc_message_registry.hpp
+++ b/redfish-core/include/registries/openbmc_message_registry.hpp
@@ -29,7 +29,7 @@
     "0.1.0",
     "OpenBMC",
 };
-const std::array<MessageEntry, 130> registry = {
+const std::array<MessageEntry, 131> registry = {
     MessageEntry{
         "ADDDCCorrectable",
         {
@@ -238,6 +238,16 @@
                      {},
                      "None.",
                  }},
+    MessageEntry{"DriveError",
+                 {
+                     "Indicates that a Drive Error occurred of "
+                     "the specified type or cause.",
+                     "Drive Error Occurred: %1.",
+                     "Warning",
+                     1,
+                     {"string"},
+                     "None.",
+                 }},
     MessageEntry{"EventLogCleared",
                  {
                      "Indicates that the event log has been cleared.",