mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 00:52:01 +00:00
RDMA/nes: Report correct vendor_id and vendor_part_id
ibv_devinfo displays 0 for vendor_id and vendor_part_id. Fill in OUI and device_id for those two fields. Signed-off-by: Chien Tung <chien.tin.tung@intel.com> Signed-off-by: Roland Dreier <rolandd@cisco.com>
This commit is contained in:
parent
cd6853d3eb
commit
b9c367e7e6
@ -254,6 +254,7 @@ struct nes_adapter *nes_init_adapter(struct nes_device *nesdev, u8 hw_rev) {
|
||||
u32 adapter_size;
|
||||
u32 arp_table_size;
|
||||
u16 vendor_id;
|
||||
u16 device_id;
|
||||
u8 OneG_Mode;
|
||||
u8 func_index;
|
||||
|
||||
@ -356,6 +357,13 @@ struct nes_adapter *nes_init_adapter(struct nes_device *nesdev, u8 hw_rev) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
nesadapter->vendor_id = (((u32) nesadapter->mac_addr_high) << 8) |
|
||||
(nesadapter->mac_addr_low >> 24);
|
||||
|
||||
pci_bus_read_config_word(nesdev->pcidev->bus, nesdev->pcidev->devfn,
|
||||
PCI_DEVICE_ID, &device_id);
|
||||
nesadapter->vendor_part_id = device_id;
|
||||
|
||||
if (nes_init_serdes(nesdev, hw_rev, port_count, nesadapter,
|
||||
OneG_Mode)) {
|
||||
kfree(nesadapter);
|
||||
|
Loading…
Reference in New Issue
Block a user