Commit 5b13886d authored by Simon Perron Caissy's avatar Simon Perron Caissy Committed by Tony Nguyen

ice: Add space to unknown speed

Add space to the end of 'Unknown' string  in  order to avoid
concatenation with 'bps' string when formatting netdev log message.
Signed-off-by: default avatarSimon Perron Caissy <simon.perron.caissy@intel.com>
Tested-by: default avatarAaron Brown <aaron.f.brown@intel.com>
Signed-off-by: default avatarTony Nguyen <anthony.l.nguyen@intel.com>
parent 9228d8b2
...@@ -667,7 +667,7 @@ void ice_print_link_msg(struct ice_vsi *vsi, bool isup) ...@@ -667,7 +667,7 @@ void ice_print_link_msg(struct ice_vsi *vsi, bool isup)
speed = "100 M"; speed = "100 M";
break; break;
default: default:
speed = "Unknown"; speed = "Unknown ";
break; break;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment