aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Brown <mcb30@ipxe.org>2022-03-13 14:37:11 +0000
committerMichael Brown <mcb30@ipxe.org>2022-08-10 12:29:47 +0100
commit9e46ffa924397e72f750a5a4848a42c597396742 (patch)
tree9f055719c22e52c2f251c880ff9c3d946358ea74
parentef7066755720a5beef46a5e2e5cad888ef139314 (diff)
downloadipxe-9e46ffa924397e72f750a5a4848a42c597396742.zip
ipxe-9e46ffa924397e72f750a5a4848a42c597396742.tar.gz
ipxe-9e46ffa924397e72f750a5a4848a42c597396742.tar.bz2
[intelxl] Rename 8086:1889 PCI ID to "iavf"
The PCI device ID 8086:1889 is for the Intel Ethernet Adaptive Virtual Function, which is a generic virtual function that can be exposed by different generations of Intel hardware. Rename the PCI ID from "xl710-vf-ad" to "iavf" to reflect that the driver is not XL710-specific. Signed-off-by: Michael Brown <mcb30@ipxe.org>
-rw-r--r--src/drivers/net/intelxlvf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/net/intelxlvf.c b/src/drivers/net/intelxlvf.c
index 8febbb2..ed78589 100644
--- a/src/drivers/net/intelxlvf.c
+++ b/src/drivers/net/intelxlvf.c
@@ -744,7 +744,7 @@ static void intelxlvf_remove ( struct pci_device *pci ) {
static struct pci_device_id intelxlvf_nics[] = {
PCI_ROM ( 0x8086, 0x154c, "xl710-vf", "XL710 VF", 0 ),
PCI_ROM ( 0x8086, 0x1571, "xl710-vf-hv", "XL710 VF (Hyper-V)", 0 ),
- PCI_ROM ( 0x8086, 0x1889, "xl710-vf-ad", "XL710 VF (adaptive)", 0 ),
+ PCI_ROM ( 0x8086, 0x1889, "iavf", "Intel adaptive VF", 0 ),
PCI_ROM ( 0x8086, 0x37cd, "x722-vf", "X722 VF", 0 ),
PCI_ROM ( 0x8086, 0x37d9, "x722-vf-hv", "X722 VF (Hyper-V)", 0 ),
};