Remove clearFaults calls

The community wasn't thrilled with the device driver
providing the clear_logged_faults command.  As it isn't
absolutely necessary for this code to do now, it is being
removed.

Note: Currently Device::clearFaults is a pure virtual function
so it still needs to be defined in the UCD90160 class.

A future commit may also remove these.

Change-Id: I0b3a33d56987dd97ab7253eb6b5d3b5afd835d67
Signed-off-by: Matt Spinler <spinler@us.ibm.com>
diff --git a/power-sequencer/ucd90160.hpp b/power-sequencer/ucd90160.hpp
index a24443e..3232264 100644
--- a/power-sequencer/ucd90160.hpp
+++ b/power-sequencer/ucd90160.hpp
@@ -54,7 +54,9 @@
         /**
          * Clears faults in the device
          */
-        void clearFaults() override;
+        void clearFaults() override
+        {
+        }
 
     private: