Support a new hardware error type in port module events:
- error_type=0xc (PCIe system power slot exceeded)
Signed-off-by: Mikhael Goikhman <migo@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
                return "High Temperature";
        case MLX5_MODULE_EVENT_ERROR_BAD_CABLE:
                return "Bad or shorted cable/module";
+       case MLX5_MODULE_EVENT_ERROR_PCIE_POWER_SLOT_EXCEEDED:
+               return "One or more network ports have been powered down due to insufficient/unadvertised power on the PCIe slot";
        default:
                return "Unknown error";
        }
 
        MLX5_MODULE_EVENT_ERROR_UNKNOWN_IDENTIFIER       = 0x5,
        MLX5_MODULE_EVENT_ERROR_HIGH_TEMPERATURE         = 0x6,
        MLX5_MODULE_EVENT_ERROR_BAD_CABLE                = 0x7,
+       MLX5_MODULE_EVENT_ERROR_PCIE_POWER_SLOT_EXCEEDED = 0xc,
        MLX5_MODULE_EVENT_ERROR_NUM,
 };