Add Support to do device bind and unbind based on OCC status

Fixes openbmc/openbmc#1698

Change-Id: Iaa33c3065b0358b62e3ec7e39d4b57c6b9d181e1
Signed-off-by: Vishwanatha Subbanna <vishwa@linux.vnet.ibm.com>
diff --git a/occ_device.cpp b/occ_device.cpp
new file mode 100644
index 0000000..865aef2
--- /dev/null
+++ b/occ_device.cpp
@@ -0,0 +1,12 @@
+#include "occ_device.hpp"
+
+namespace open_power
+{
+namespace occ
+{
+
+fs::path Device::bindPath = fs::path(OCC_HWMON_PATH) / "bind";
+fs::path Device::unBindPath = fs::path(OCC_HWMON_PATH) / "unbind";
+
+} // namespace occ
+} // namespace open_power