]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
[intelxl] Rename 8086:1889 PCI ID to "iavf"
authorMichael Brown <mcb30@ipxe.org>
Sun, 13 Mar 2022 14:37:11 +0000 (14:37 +0000)
committerMichael Brown <mcb30@ipxe.org>
Wed, 10 Aug 2022 11:29:47 +0000 (12:29 +0100)
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>
src/drivers/net/intelxlvf.c

index 8febbb2b9e80d2f298e07d7f7f7e45c6e051eca4..ed785898aa6c258ba8d71b37b5ae85be4f8383ed 100644 (file)
@@ -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 ),
 };