From: Jayamohan Kallickal Date: Wed, 29 Jan 2014 07:16:40 +0000 (-0500) Subject: [SCSI] be2iscsi: Fix port speed typo in driver. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=3e393172b8efcd412cbfd9c6e72e7c0e681029eb;p=deliverable%2Flinux.git [SCSI] be2iscsi: Fix port speed typo in driver. The 100Mbps port speed macro used was not proper. Signed-off-by: John Soni Jose Signed-off-by: Jayamohan Kallickal Reviewed-by: Mike Christie Signed-off-by: James Bottomley --- diff --git a/drivers/scsi/be2iscsi/be_iscsi.c b/drivers/scsi/be2iscsi/be_iscsi.c index bdd0f05a3342..a7a210ef407c 100644 --- a/drivers/scsi/be2iscsi/be_iscsi.c +++ b/drivers/scsi/be2iscsi/be_iscsi.c @@ -793,7 +793,7 @@ static int beiscsi_get_port_speed(struct Scsi_Host *shost) ihost->port_speed = ISCSI_PORT_SPEED_10MBPS; break; case BE2ISCSI_LINK_SPEED_100MBPS: - ihost->port_speed = BE2ISCSI_LINK_SPEED_100MBPS; + ihost->port_speed = ISCSI_PORT_SPEED_100MBPS; break; case BE2ISCSI_LINK_SPEED_1GBPS: ihost->port_speed = ISCSI_PORT_SPEED_1GBPS;