be2net: Fix displaying supported speeds for BE2
The BE2 FW GET_PHY_DETAILS cmd does not return fixed speeds supported. Signed-off-by: Vasundhara Volam <vasundhara.volam@emulex.com> Signed-off-by: Sathya Perla <sathya.perla@emulex.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
fd8c7be722
commit
68cb7e47f0
|
@ -2454,6 +2454,12 @@ int be_cmd_get_phy_info(struct be_adapter *adapter)
|
|||
le16_to_cpu(resp_phy_info->fixed_speeds_supported);
|
||||
adapter->phy.misc_params =
|
||||
le32_to_cpu(resp_phy_info->misc_params);
|
||||
|
||||
if (BE2_chip(adapter)) {
|
||||
adapter->phy.fixed_speeds_supported =
|
||||
BE_SUPPORTED_SPEED_10GBPS |
|
||||
BE_SUPPORTED_SPEED_1GBPS;
|
||||
}
|
||||
}
|
||||
pci_free_consistent(adapter->pdev, cmd.size,
|
||||
cmd.va, cmd.dma);
|
||||
|
|
Loading…
Reference in New Issue