Renamed error yaml due to clash with error yaml in openpower-dbus

To fix duplicate "Event" string in error message ""Message":
"org.open_power.Error.Host.Event.Event"", renamed error yaml
in dbus interfaces from  org/open_power/Host/Event.errors.yaml
to org/open_power/Host.errors.yaml.

Renaming of error yaml file in dbus interfaces clashes with the
error yaml file name in openpower-debug-collector.

To fix the clash renaming openpower-debug-collector error yaml from
org/open_power/Host.errors.yaml to org/open_power/Host/Boot.errors.yaml

Change-Id: Ib5fc0cd176b5d9dc2f47f35b008277434855a711
Signed-off-by: Marri Devender Rao <devenrao@in.ibm.com>
diff --git a/checkstop_app.cpp b/checkstop_app.cpp
index b9510c2..2ecc45b 100644
--- a/checkstop_app.cpp
+++ b/checkstop_app.cpp
@@ -1,11 +1,11 @@
 #include <phosphor-logging/elog.hpp>
 #include "phosphor-logging/elog-errors.hpp"
-#include "org/open_power/Host/error.hpp"
+#include "org/open_power/Host/Boot/error.hpp"
 
 int main(int argc, char* argv[])
 {
     using namespace phosphor::logging;
-    using error = sdbusplus::org::open_power::Host::Error::Checkstop;
+    using error = sdbusplus::org::open_power::Host::Boot::Error::Checkstop;
     report<error>();
 
     return 0;