diff options
author | Ganesh Goudar <ganeshgr@chelsio.com> | 2018-05-23 20:02:58 +0530 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-05-23 16:00:56 -0400 |
commit | 1d19023fa6f65de636901b9b7340f2f7eebb710a (patch) | |
tree | 252e189edb5bca8f7665d95813e375206b5f4af5 /drivers/scsi/csiostor/csio_hw.c | |
parent | 5ee6ad201e6cba94e199da78a7fdece8881352b4 (diff) | |
download | linux-1d19023fa6f65de636901b9b7340f2f7eebb710a.tar.gz linux-1d19023fa6f65de636901b9b7340f2f7eebb710a.tar.bz2 linux-1d19023fa6f65de636901b9b7340f2f7eebb710a.zip |
cxgb4: change the port capability bits definition
MDI Port Capabilities bit definitions were inconsistent with
regard to the MDI enum values. 2 bits used to define MDI in
the port capabilities are not really separable, it's a 2-bit
field with 4 different values. Change the port capability bit
definitions to be "AUTO" and "STRAIGHT" in order to get them
to line up with the enum's.
Signed-off-by: Casey Leedom <leedom@chelsio.com>
Signed-off-by: Ganesh Goudar <ganeshgr@chelsio.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/scsi/csiostor/csio_hw.c')
-rw-r--r-- | drivers/scsi/csiostor/csio_hw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/csiostor/csio_hw.c b/drivers/scsi/csiostor/csio_hw.c index 96bbb82c826d..a10cf25ee7f9 100644 --- a/drivers/scsi/csiostor/csio_hw.c +++ b/drivers/scsi/csiostor/csio_hw.c @@ -1500,8 +1500,8 @@ fw_port_cap32_t fwcaps16_to_caps32(fw_port_cap16_t caps16) CAP16_TO_CAP32(FC_RX); CAP16_TO_CAP32(FC_TX); CAP16_TO_CAP32(ANEG); - CAP16_TO_CAP32(MDIX); CAP16_TO_CAP32(MDIAUTO); + CAP16_TO_CAP32(MDISTRAIGHT); CAP16_TO_CAP32(FEC_RS); CAP16_TO_CAP32(FEC_BASER_RS); CAP16_TO_CAP32(802_3_PAUSE); |