[dpdk-dev,1/9] net/ixgbe/base: make a debug message simple

Message ID 1488348292-118243-2-git-send-email-wenzhuo.lu@intel.com (mailing list archive)
State Accepted, archived
Delegated to: Ferruh Yigit
Headers

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK

Commit Message

Wenzhuo Lu March 1, 2017, 6:04 a.m. UTC
  The debug message is too long. Make it shorter.

Signed-off-by: Wenzhuo Lu <wenzhuo.lu@intel.com>
---
 drivers/net/ixgbe/base/ixgbe_x550.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/drivers/net/ixgbe/base/ixgbe_x550.c b/drivers/net/ixgbe/base/ixgbe_x550.c
index 6f9c034..cf72bba 100644
--- a/drivers/net/ixgbe/base/ixgbe_x550.c
+++ b/drivers/net/ixgbe/base/ixgbe_x550.c
@@ -2519,7 +2519,7 @@  s32 ixgbe_reset_hw_X550em(struct ixgbe_hw *hw)
 			  status);
 
 	if (status == IXGBE_ERR_SFP_NOT_SUPPORTED) {
-		DEBUGOUT("Returning from reset HW since PHY ops init returned IXGBE_ERR_SFP_NOT_SUPPORTED\n");
+		DEBUGOUT("Returning from reset HW due to PHY init failure\n");
 		return status;
 	}