diff options
author | Ganesh Goudar <ganeshgr@chelsio.com> | 2018-07-04 17:49:33 +0530 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-07-05 20:14:29 +0900 |
commit | dfecc759e64b0ea581468fe2359836f1998deac9 (patch) | |
tree | d8b5af961b46fbe71a29d3b96a452accd703220c | |
parent | 4ed88df766704633459d8fddce1c1c87e1acb844 (diff) | |
download | linux-stable-dfecc759e64b0ea581468fe2359836f1998deac9.tar.gz linux-stable-dfecc759e64b0ea581468fe2359836f1998deac9.tar.bz2 linux-stable-dfecc759e64b0ea581468fe2359836f1998deac9.zip |
cxgb4: Fix the condition to check if the card is T5
Use 'chip_ver' rather than 'chip' to check if the card
is T5.
Fixes: e8d452923ae6 ("cxgb4: clean up init_one")
Signed-off-by: Ganesh Goudar <ganeshgr@chelsio.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c b/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c index 96fcbd1c33a3..0d91716a2566 100644 --- a/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c +++ b/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c @@ -5766,7 +5766,7 @@ static int init_one(struct pci_dev *pdev, const struct pci_device_id *ent) if (t4_read_reg(adapter, LE_DB_CONFIG_A) & HASHEN_F) { u32 hash_base, hash_reg; - if (chip <= CHELSIO_T5) { + if (chip_ver <= CHELSIO_T5) { hash_reg = LE_DB_TID_HASHBASE_A; hash_base = t4_read_reg(adapter, hash_reg); adapter->tids.hash_base = hash_base / 4; |