From e01f208ae1e85d836cd223222bf74630a7e164cb Mon Sep 17 00:00:00 2001 From: tackerman Date: Sat, 1 Jan 2005 19:54:39 +0000 Subject: [PATCH] Added device id support for Intel 82541ER and 82546GB dual port PCIE adapter. PR: None --- sys/dev/em/if_em.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/dev/em/if_em.c b/sys/dev/em/if_em.c index 7d889f5b3a7..6cf1a7fc02d 100644 --- a/sys/dev/em/if_em.c +++ b/sys/dev/em/if_em.c @@ -80,6 +80,7 @@ static em_vendor_info_t em_vendor_info_array[] = { 0x8086, 0x1011, PCI_ANY_ID, PCI_ANY_ID, 0}, { 0x8086, 0x1012, PCI_ANY_ID, PCI_ANY_ID, 0}, { 0x8086, 0x1013, PCI_ANY_ID, PCI_ANY_ID, 0}, + { 0x8086, 0x1014, PCI_ANY_ID, PCI_ANY_ID, 0}, { 0x8086, 0x1015, PCI_ANY_ID, PCI_ANY_ID, 0}, { 0x8086, 0x1016, PCI_ANY_ID, PCI_ANY_ID, 0}, { 0x8086, 0x1017, PCI_ANY_ID, PCI_ANY_ID, 0}, @@ -99,6 +100,7 @@ static em_vendor_info_t em_vendor_info_array[] = { 0x8086, 0x107A, PCI_ANY_ID, PCI_ANY_ID, 0}, { 0x8086, 0x107B, PCI_ANY_ID, PCI_ANY_ID, 0}, { 0x8086, 0x107C, PCI_ANY_ID, PCI_ANY_ID, 0}, + { 0x8086, 0x108A, PCI_ANY_ID, PCI_ANY_ID, 0}, /* required last entry */ { 0, 0, 0, 0, 0} }; -- 2.45.2