psu-ng: Disable Communication, Logic, and Memory (CML) fault

Turn off CML fault logging as some of the power supplies don't support
all PMBus commands that could be sent from device driver or application.
The PSU sets the CML fault bit on when it receives unsupported PMBus
command.

Testing:
  - Tested the change on simulation by setting the CML status bit on and
    verified no error log reported.
  - Tested the change on BMC System as follow and verified no error log
    reported
    * Powered on the chassis
    * i2cget -f -y 3 0x68 0x6c w # causes information error log for
      tracing purpose.

Change-Id: Ie1b52e5350a29f65bd517ad11293c6dc522ac83e
Signed-off-by: Brandon Wyman <bjwyman@gmail.com>
Signed-off-by: Faisal Awada <faisal@us.ibm.com>
diff --git a/phosphor-power-supply/power_supply.hpp b/phosphor-power-supply/power_supply.hpp
index 3c6408b..d745f48 100644
--- a/phosphor-power-supply/power_supply.hpp
+++ b/phosphor-power-supply/power_supply.hpp
@@ -460,11 +460,10 @@
 
     /**
      * @brief Returns true if the number of failed reads exceeds limit
-     * TODO: or CML bit on.
      */
     bool hasCommFault() const
     {
-        return ((readFail >= LOG_LIMIT) || (cmlFault >= DEGLITCH_LIMIT));
+        return (readFail >= LOG_LIMIT);
     }
 
     /**