From: Johannes Thumshirn Date: Thu, 7 Jul 2016 13:41:58 +0000 (+0200) Subject: fcoe: use defines from ethtool for 20Gbit and 40Gbit speeds X-Git-Tag: v4.8-rc1~132^2~59 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=d51bf96d7835abafbe2a251729554f0523a62203;p=linux.git fcoe: use defines from ethtool for 20Gbit and 40Gbit speeds Use defines from ethtool for 20Gbit and 40Gbit speeds instead of magic numbers. Signed-off-by: Johannes Thumshirn Reviewed-by: Laurence Oberman Signed-off-by: Martin K. Petersen --- diff --git a/drivers/scsi/fcoe/fcoe_transport.c b/drivers/scsi/fcoe/fcoe_transport.c index 641c60e8fda3..7028dd37e5dd 100644 --- a/drivers/scsi/fcoe/fcoe_transport.c +++ b/drivers/scsi/fcoe/fcoe_transport.c @@ -133,10 +133,10 @@ int fcoe_link_speed_update(struct fc_lport *lport) case SPEED_10000: lport->link_speed = FC_PORTSPEED_10GBIT; break; - case 20000: + case SPEED_20000: lport->link_speed = FC_PORTSPEED_20GBIT; break; - case 40000: + case SPEED_40000: lport->link_speed = FC_PORTSPEED_40GBIT; break; default: