Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[pci] Add driver_data field to struct pci_device_id
Modified-by: Michael Brown <mcb30@etherboot.org>
Signed-off-by: Michael Brown <mcb30@etherboot.org>
  • Loading branch information
thomil authored and Michael Brown committed Mar 26, 2009
1 parent 87b494b commit 3da6f1c
Show file tree
Hide file tree
Showing 39 changed files with 335 additions and 331 deletions.
2 changes: 1 addition & 1 deletion src/arch/i386/drivers/net/undi.c
Expand Up @@ -135,7 +135,7 @@ static void undipci_remove ( struct pci_device *pci ) {
}

static struct pci_device_id undipci_nics[] = {
PCI_ROM ( 0xffff, 0xffff, "undipci", "UNDI (PCI)" ),
PCI_ROM ( 0xffff, 0xffff, "undipci", "UNDI (PCI)", 0 ),
};

struct pci_driver undipci_driver __pci_driver = {
Expand Down
4 changes: 2 additions & 2 deletions src/drivers/infiniband/arbel.c
Expand Up @@ -2241,8 +2241,8 @@ static void arbel_remove ( struct pci_device *pci ) {
}

static struct pci_device_id arbel_nics[] = {
PCI_ROM ( 0x15b3, 0x6282, "mt25218", "MT25218 HCA driver" ),
PCI_ROM ( 0x15b3, 0x6274, "mt25204", "MT25204 HCA driver" ),
PCI_ROM ( 0x15b3, 0x6282, "mt25218", "MT25218 HCA driver", 0 ),
PCI_ROM ( 0x15b3, 0x6274, "mt25204", "MT25204 HCA driver", 0 ),
};

struct pci_driver arbel_driver __pci_driver = {
Expand Down
8 changes: 4 additions & 4 deletions src/drivers/infiniband/hermon.c
Expand Up @@ -2310,10 +2310,10 @@ static void hermon_remove ( struct pci_device *pci ) {
}

static struct pci_device_id hermon_nics[] = {
PCI_ROM ( 0x15b3, 0x6340, "mt25408", "MT25408 HCA driver" ),
PCI_ROM ( 0x15b3, 0x634a, "mt25418", "MT25418 HCA driver" ),
PCI_ROM ( 0x15b3, 0x6732, "mt26418", "MT26418 HCA driver" ),
PCI_ROM ( 0x15b3, 0x673c, "mt26428", "MT26428 HCA driver" ),
PCI_ROM ( 0x15b3, 0x6340, "mt25408", "MT25408 HCA driver", 0 ),
PCI_ROM ( 0x15b3, 0x634a, "mt25418", "MT25418 HCA driver", 0 ),
PCI_ROM ( 0x15b3, 0x6732, "mt26418", "MT26418 HCA driver", 0 ),
PCI_ROM ( 0x15b3, 0x673c, "mt26428", "MT26428 HCA driver", 0 ),
};

struct pci_driver hermon_driver __pci_driver = {
Expand Down
2 changes: 1 addition & 1 deletion src/drivers/infiniband/linda.c
Expand Up @@ -2386,7 +2386,7 @@ static void linda_remove ( struct pci_device *pci ) {
}

static struct pci_device_id linda_nics[] = {
PCI_ROM ( 0x1077, 0x7220, "iba7220", "QLE7240/7280 HCA driver" ),
PCI_ROM ( 0x1077, 0x7220, "iba7220", "QLE7240/7280 HCA driver", 0 ),
};

struct pci_driver linda_driver __pci_driver = {
Expand Down
28 changes: 14 additions & 14 deletions src/drivers/net/3c595.c
Expand Up @@ -521,20 +521,20 @@ static struct nic_operations t595_operations = {
};

static struct pci_device_id t595_nics[] = {
PCI_ROM(0x10b7, 0x5900, "3c590", "3Com590"), /* Vortex 10Mbps */
PCI_ROM(0x10b7, 0x5950, "3c595", "3Com595"), /* Vortex 100baseTx */
PCI_ROM(0x10b7, 0x5951, "3c595-1", "3Com595"), /* Vortex 100baseT4 */
PCI_ROM(0x10b7, 0x5952, "3c595-2", "3Com595"), /* Vortex 100base-MII */
PCI_ROM(0x10b7, 0x9000, "3c900-tpo", "3Com900-TPO"), /* 10 Base TPO */
PCI_ROM(0x10b7, 0x9001, "3c900-t4", "3Com900-Combo"), /* 10/100 T4 */
PCI_ROM(0x10b7, 0x9004, "3c900b-tpo", "3Com900B-TPO"), /* 10 Base TPO */
PCI_ROM(0x10b7, 0x9005, "3c900b-combo", "3Com900B-Combo"), /* 10 Base Combo */
PCI_ROM(0x10b7, 0x9006, "3c900b-tpb2", "3Com900B-2/T"), /* 10 Base TP and Base2 */
PCI_ROM(0x10b7, 0x900a, "3c900b-fl", "3Com900B-FL"), /* 10 Base F */
PCI_ROM(0x10b7, 0x9800, "3c980-cyclone-1", "3Com980-Cyclone"), /* Cyclone */
PCI_ROM(0x10b7, 0x9805, "3c9805-1", "3Com9805"), /* Dual Port Server Cyclone */
PCI_ROM(0x10b7, 0x7646, "3csoho100-tx-1", "3CSOHO100-TX"), /* Hurricane */
PCI_ROM(0x10b7, 0x4500, "3c450-1", "3Com450 HomePNA Tornado"),
PCI_ROM(0x10b7, 0x5900, "3c590", "3Com590", 0), /* Vortex 10Mbps */
PCI_ROM(0x10b7, 0x5950, "3c595", "3Com595", 0), /* Vortex 100baseTx */
PCI_ROM(0x10b7, 0x5951, "3c595-1", "3Com595", 0), /* Vortex 100baseT4 */
PCI_ROM(0x10b7, 0x5952, "3c595-2", "3Com595", 0), /* Vortex 100base-MII */
PCI_ROM(0x10b7, 0x9000, "3c900-tpo", "3Com900-TPO", 0), /* 10 Base TPO */
PCI_ROM(0x10b7, 0x9001, "3c900-t4", "3Com900-Combo", 0), /* 10/100 T4 */
PCI_ROM(0x10b7, 0x9004, "3c900b-tpo", "3Com900B-TPO", 0), /* 10 Base TPO */
PCI_ROM(0x10b7, 0x9005, "3c900b-combo", "3Com900B-Combo", 0), /* 10 Base Combo */
PCI_ROM(0x10b7, 0x9006, "3c900b-tpb2", "3Com900B-2/T", 0), /* 10 Base TP and Base2 */
PCI_ROM(0x10b7, 0x900a, "3c900b-fl", "3Com900B-FL", 0), /* 10 Base F */
PCI_ROM(0x10b7, 0x9800, "3c980-cyclone-1", "3Com980-Cyclone", 0), /* Cyclone */
PCI_ROM(0x10b7, 0x9805, "3c9805-1", "3Com9805", 0), /* Dual Port Server Cyclone */
PCI_ROM(0x10b7, 0x7646, "3csoho100-tx-1", "3CSOHO100-TX", 0), /* Hurricane */
PCI_ROM(0x10b7, 0x4500, "3c450-1", "3Com450 HomePNA Tornado", 0),
};

PCI_DRIVER ( t595_driver, t595_nics, PCI_NO_CLASS );
Expand Down
44 changes: 22 additions & 22 deletions src/drivers/net/3c90x.c
Expand Up @@ -950,30 +950,30 @@ static int a3c90x_probe(struct pci_device *pci,

static struct pci_device_id a3c90x_nics[] = {
/* Original 90x revisions: */
PCI_ROM(0x10b7, 0x6055, "3c556", "3C556"), /* Huricane */
PCI_ROM(0x10b7, 0x9000, "3c905-tpo", "3Com900-TPO"), /* 10 Base TPO */
PCI_ROM(0x10b7, 0x9001, "3c905-t4", "3Com900-Combo"), /* 10/100 T4 */
PCI_ROM(0x10b7, 0x9050, "3c905-tpo100", "3Com905-TX"), /* 100 Base TX / 10/100 TPO */
PCI_ROM(0x10b7, 0x9051, "3c905-combo", "3Com905-T4"), /* 100 Base T4 / 10 Base Combo */
PCI_ROM(0x10b7, 0x6055, "3c556", "3C556", 0), /* Huricane */
PCI_ROM(0x10b7, 0x9000, "3c905-tpo", "3Com900-TPO", 0), /* 10 Base TPO */
PCI_ROM(0x10b7, 0x9001, "3c905-t4", "3Com900-Combo", 0), /* 10/100 T4 */
PCI_ROM(0x10b7, 0x9050, "3c905-tpo100", "3Com905-TX", 0), /* 100 Base TX / 10/100 TPO */
PCI_ROM(0x10b7, 0x9051, "3c905-combo", "3Com905-T4", 0), /* 100 Base T4 / 10 Base Combo */
/* Newer 90xB revisions: */
PCI_ROM(0x10b7, 0x9004, "3c905b-tpo", "3Com900B-TPO"), /* 10 Base TPO */
PCI_ROM(0x10b7, 0x9005, "3c905b-combo", "3Com900B-Combo"), /* 10 Base Combo */
PCI_ROM(0x10b7, 0x9006, "3c905b-tpb2", "3Com900B-2/T"), /* 10 Base TP and Base2 */
PCI_ROM(0x10b7, 0x900a, "3c905b-fl", "3Com900B-FL"), /* 10 Base FL */
PCI_ROM(0x10b7, 0x9055, "3c905b-tpo100", "3Com905B-TX"), /* 10/100 TPO */
PCI_ROM(0x10b7, 0x9056, "3c905b-t4", "3Com905B-T4"), /* 10/100 T4 */
PCI_ROM(0x10b7, 0x9058, "3c905b-9058", "3Com905B-9058"), /* Cyclone 10/100/BNC */
PCI_ROM(0x10b7, 0x905a, "3c905b-fx", "3Com905B-FL"), /* 100 Base FX / 10 Base FX */
PCI_ROM(0x10b7, 0x9004, "3c905b-tpo", "3Com900B-TPO", 0), /* 10 Base TPO */
PCI_ROM(0x10b7, 0x9005, "3c905b-combo", "3Com900B-Combo", 0), /* 10 Base Combo */
PCI_ROM(0x10b7, 0x9006, "3c905b-tpb2", "3Com900B-2/T", 0), /* 10 Base TP and Base2 */
PCI_ROM(0x10b7, 0x900a, "3c905b-fl", "3Com900B-FL", 0), /* 10 Base FL */
PCI_ROM(0x10b7, 0x9055, "3c905b-tpo100", "3Com905B-TX", 0), /* 10/100 TPO */
PCI_ROM(0x10b7, 0x9056, "3c905b-t4", "3Com905B-T4", 0), /* 10/100 T4 */
PCI_ROM(0x10b7, 0x9058, "3c905b-9058", "3Com905B-9058", 0), /* Cyclone 10/100/BNC */
PCI_ROM(0x10b7, 0x905a, "3c905b-fx", "3Com905B-FL", 0), /* 100 Base FX / 10 Base FX */
/* Newer 90xC revision: */
PCI_ROM(0x10b7, 0x9200, "3c905c-tpo", "3Com905C-TXM"), /* 10/100 TPO (3C905C-TXM) */
PCI_ROM(0x10b7, 0x9202, "3c920b-emb-ati", "3c920B-EMB-WNM (ATI Radeon 9100 IGP)"), /* 3c920B-EMB-WNM (ATI Radeon 9100 IGP) */
PCI_ROM(0x10b7, 0x9210, "3c920b-emb-wnm", "3Com20B-EMB WNM"),
PCI_ROM(0x10b7, 0x9800, "3c980", "3Com980-Cyclone"), /* Cyclone */
PCI_ROM(0x10b7, 0x9805, "3c9805", "3Com9805"), /* Dual Port Server Cyclone */
PCI_ROM(0x10b7, 0x7646, "3csoho100-tx", "3CSOHO100-TX"), /* Hurricane */
PCI_ROM(0x10b7, 0x4500, "3c450", "3Com450 HomePNA Tornado"),
PCI_ROM(0x10b7, 0x1201, "3c982a", "3Com982A"),
PCI_ROM(0x10b7, 0x1202, "3c982b", "3Com982B"),
PCI_ROM(0x10b7, 0x9200, "3c905c-tpo", "3Com905C-TXM", 0), /* 10/100 TPO (3C905C-TXM) */
PCI_ROM(0x10b7, 0x9202, "3c920b-emb-ati", "3c920B-EMB-WNM (ATI Radeon 9100 IGP)", 0), /* 3c920B-EMB-WNM (ATI Radeon 9100 IGP) */
PCI_ROM(0x10b7, 0x9210, "3c920b-emb-wnm", "3Com20B-EMB WNM", 0),
PCI_ROM(0x10b7, 0x9800, "3c980", "3Com980-Cyclone", 0), /* Cyclone */
PCI_ROM(0x10b7, 0x9805, "3c9805", "3Com9805", 0), /* Dual Port Server Cyclone */
PCI_ROM(0x10b7, 0x7646, "3csoho100-tx", "3CSOHO100-TX", 0), /* Hurricane */
PCI_ROM(0x10b7, 0x4500, "3c450", "3Com450 HomePNA Tornado", 0),
PCI_ROM(0x10b7, 0x1201, "3c982a", "3Com982A", 0),
PCI_ROM(0x10b7, 0x1202, "3c982b", "3Com982B", 0),
};

struct pci_driver a3c90x_driver __pci_driver = {
Expand Down
2 changes: 1 addition & 1 deletion src/drivers/net/amd8111e.c
Expand Up @@ -674,7 +674,7 @@ static int amd8111e_probe(struct nic *nic, struct pci_device *pdev)
}

static struct pci_device_id amd8111e_nics[] = {
PCI_ROM(0x1022, 0x7462, "amd8111e", "AMD8111E"),
PCI_ROM(0x1022, 0x7462, "amd8111e", "AMD8111E", 0),
};

PCI_DRIVER ( amd8111e_driver, amd8111e_nics, PCI_NO_CLASS );
Expand Down
6 changes: 3 additions & 3 deletions src/drivers/net/b44.c
Expand Up @@ -935,9 +935,9 @@ static struct net_device_operations b44_operations = {


static struct pci_device_id b44_nics[] = {
PCI_ROM(0x14e4, 0x4401, "BCM4401", "BCM4401"),
PCI_ROM(0x14e4, 0x170c, "BCM4401-B0", "BCM4401-B0"),
PCI_ROM(0x14e4, 0x4402, "BCM4401-B1", "BCM4401-B1"),
PCI_ROM(0x14e4, 0x4401, "BCM4401", "BCM4401", 0),
PCI_ROM(0x14e4, 0x170c, "BCM4401-B0", "BCM4401-B0", 0),
PCI_ROM(0x14e4, 0x4402, "BCM4401-B1", "BCM4401-B1", 0),
};


Expand Down
8 changes: 4 additions & 4 deletions src/drivers/net/bnx2.c
Expand Up @@ -2673,10 +2673,10 @@ bnx2_probe(struct nic *nic, struct pci_device *pdev)
}

static struct pci_device_id bnx2_nics[] = {
PCI_ROM(0x14e4, 0x164a, "bnx2-5706", "Broadcom NetXtreme II BCM5706"),
PCI_ROM(0x14e4, 0x164c, "bnx2-5708", "Broadcom NetXtreme II BCM5708"),
PCI_ROM(0x14e4, 0x16aa, "bnx2-5706S", "Broadcom NetXtreme II BCM5706S"),
PCI_ROM(0x14e4, 0x16ac, "bnx2-5708S", "Broadcom NetXtreme II BCM5708S"),
PCI_ROM(0x14e4, 0x164a, "bnx2-5706", "Broadcom NetXtreme II BCM5706", 0),
PCI_ROM(0x14e4, 0x164c, "bnx2-5708", "Broadcom NetXtreme II BCM5708", 0),
PCI_ROM(0x14e4, 0x16aa, "bnx2-5706S", "Broadcom NetXtreme II BCM5706S", 0),
PCI_ROM(0x14e4, 0x16ac, "bnx2-5708S", "Broadcom NetXtreme II BCM5708S", 0),
};

PCI_DRIVER ( bnx2_driver, bnx2_nics, PCI_NO_CLASS );
Expand Down
8 changes: 4 additions & 4 deletions src/drivers/net/davicom.c
Expand Up @@ -705,10 +705,10 @@ static struct nic_operations davicom_operations = {
};

static struct pci_device_id davicom_nics[] = {
PCI_ROM(0x1282, 0x9100, "davicom9100", "Davicom 9100"),
PCI_ROM(0x1282, 0x9102, "davicom9102", "Davicom 9102"),
PCI_ROM(0x1282, 0x9009, "davicom9009", "Davicom 9009"),
PCI_ROM(0x1282, 0x9132, "davicom9132", "Davicom 9132"), /* Needs probably some fixing */
PCI_ROM(0x1282, 0x9100, "davicom9100", "Davicom 9100", 0),
PCI_ROM(0x1282, 0x9102, "davicom9102", "Davicom 9102", 0),
PCI_ROM(0x1282, 0x9009, "davicom9009", "Davicom 9009", 0),
PCI_ROM(0x1282, 0x9132, "davicom9132", "Davicom 9132", 0), /* Needs probably some fixing */
};

PCI_DRIVER ( davicom_driver, davicom_nics, PCI_NO_CLASS );
Expand Down
8 changes: 4 additions & 4 deletions src/drivers/net/dmfe.c
Expand Up @@ -1204,10 +1204,10 @@ static struct nic_operations dmfe_operations = {
};

static struct pci_device_id dmfe_nics[] = {
PCI_ROM(0x1282, 0x9100, "dmfe9100", "Davicom 9100"),
PCI_ROM(0x1282, 0x9102, "dmfe9102", "Davicom 9102"),
PCI_ROM(0x1282, 0x9009, "dmfe9009", "Davicom 9009"),
PCI_ROM(0x1282, 0x9132, "dmfe9132", "Davicom 9132"), /* Needs probably some fixing */
PCI_ROM(0x1282, 0x9100, "dmfe9100", "Davicom 9100", 0),
PCI_ROM(0x1282, 0x9102, "dmfe9102", "Davicom 9102", 0),
PCI_ROM(0x1282, 0x9009, "dmfe9009", "Davicom 9009", 0),
PCI_ROM(0x1282, 0x9132, "dmfe9132", "Davicom 9132", 0), /* Needs probably some fixing */
};

PCI_DRIVER ( dmfe_driver, dmfe_nics, PCI_NO_CLASS );
Expand Down
124 changes: 62 additions & 62 deletions src/drivers/net/e1000/e1000.c
Expand Up @@ -1039,68 +1039,68 @@ e1000_io_write ( struct e1000_hw *hw __unused, unsigned long port, uint32_t val
}

static struct pci_device_id e1000_nics[] = {
PCI_ROM(0x8086, 0x1000, "e1000-0x1000", "e1000-0x1000"),
PCI_ROM(0x8086, 0x1001, "e1000-0x1001", "e1000-0x1001"),
PCI_ROM(0x8086, 0x1004, "e1000-0x1004", "e1000-0x1004"),
PCI_ROM(0x8086, 0x1008, "e1000-0x1008", "e1000-0x1008"),
PCI_ROM(0x8086, 0x1009, "e1000-0x1009", "e1000-0x1009"),
PCI_ROM(0x8086, 0x100c, "e1000-0x100c", "e1000-0x100c"),
PCI_ROM(0x8086, 0x100d, "e1000-0x100d", "e1000-0x100d"),
PCI_ROM(0x8086, 0x100e, "e1000-0x100e", "e1000-0x100e"),
PCI_ROM(0x8086, 0x100f, "e1000-0x100f", "e1000-0x100f"),
PCI_ROM(0x8086, 0x1010, "e1000-0x1010", "e1000-0x1010"),
PCI_ROM(0x8086, 0x1011, "e1000-0x1011", "e1000-0x1011"),
PCI_ROM(0x8086, 0x1012, "e1000-0x1012", "e1000-0x1012"),
PCI_ROM(0x8086, 0x1013, "e1000-0x1013", "e1000-0x1013"),
PCI_ROM(0x8086, 0x1014, "e1000-0x1014", "e1000-0x1014"),
PCI_ROM(0x8086, 0x1015, "e1000-0x1015", "e1000-0x1015"),
PCI_ROM(0x8086, 0x1016, "e1000-0x1016", "e1000-0x1016"),
PCI_ROM(0x8086, 0x1017, "e1000-0x1017", "e1000-0x1017"),
PCI_ROM(0x8086, 0x1018, "e1000-0x1018", "e1000-0x1018"),
PCI_ROM(0x8086, 0x1019, "e1000-0x1019", "e1000-0x1019"),
PCI_ROM(0x8086, 0x101a, "e1000-0x101a", "e1000-0x101a"),
PCI_ROM(0x8086, 0x101d, "e1000-0x101d", "e1000-0x101d"),
PCI_ROM(0x8086, 0x101e, "e1000-0x101e", "e1000-0x101e"),
PCI_ROM(0x8086, 0x1026, "e1000-0x1026", "e1000-0x1026"),
PCI_ROM(0x8086, 0x1027, "e1000-0x1027", "e1000-0x1027"),
PCI_ROM(0x8086, 0x1028, "e1000-0x1028", "e1000-0x1028"),
PCI_ROM(0x8086, 0x1049, "e1000-0x1049", "e1000-0x1049"),
PCI_ROM(0x8086, 0x104a, "e1000-0x104a", "e1000-0x104a"),
PCI_ROM(0x8086, 0x104b, "e1000-0x104b", "e1000-0x104b"),
PCI_ROM(0x8086, 0x104c, "e1000-0x104c", "e1000-0x104c"),
PCI_ROM(0x8086, 0x104d, "e1000-0x104d", "e1000-0x104d"),
PCI_ROM(0x8086, 0x105e, "e1000-0x105e", "e1000-0x105e"),
PCI_ROM(0x8086, 0x105f, "e1000-0x105f", "e1000-0x105f"),
PCI_ROM(0x8086, 0x1060, "e1000-0x1060", "e1000-0x1060"),
PCI_ROM(0x8086, 0x1075, "e1000-0x1075", "e1000-0x1075"),
PCI_ROM(0x8086, 0x1076, "e1000-0x1076", "e1000-0x1076"),
PCI_ROM(0x8086, 0x1077, "e1000-0x1077", "e1000-0x1077"),
PCI_ROM(0x8086, 0x1078, "e1000-0x1078", "e1000-0x1078"),
PCI_ROM(0x8086, 0x1079, "e1000-0x1079", "e1000-0x1079"),
PCI_ROM(0x8086, 0x107a, "e1000-0x107a", "e1000-0x107a"),
PCI_ROM(0x8086, 0x107b, "e1000-0x107b", "e1000-0x107b"),
PCI_ROM(0x8086, 0x107c, "e1000-0x107c", "e1000-0x107c"),
PCI_ROM(0x8086, 0x107d, "e1000-0x107d", "e1000-0x107d"),
PCI_ROM(0x8086, 0x107e, "e1000-0x107e", "e1000-0x107e"),
PCI_ROM(0x8086, 0x107f, "e1000-0x107f", "e1000-0x107f"),
PCI_ROM(0x8086, 0x108a, "e1000-0x108a", "e1000-0x108a"),
PCI_ROM(0x8086, 0x108b, "e1000-0x108b", "e1000-0x108b"),
PCI_ROM(0x8086, 0x108c, "e1000-0x108c", "e1000-0x108c"),
PCI_ROM(0x8086, 0x1096, "e1000-0x1096", "e1000-0x1096"),
PCI_ROM(0x8086, 0x1098, "e1000-0x1098", "e1000-0x1098"),
PCI_ROM(0x8086, 0x1099, "e1000-0x1099", "e1000-0x1099"),
PCI_ROM(0x8086, 0x109a, "e1000-0x109a", "e1000-0x109a"),
PCI_ROM(0x8086, 0x10a4, "e1000-0x10a4", "e1000-0x10a4"),
PCI_ROM(0x8086, 0x10a5, "e1000-0x10a5", "e1000-0x10a5"),
PCI_ROM(0x8086, 0x10b5, "e1000-0x10b5", "e1000-0x10b5"),
PCI_ROM(0x8086, 0x10b9, "e1000-0x10b9", "e1000-0x10b9"),
PCI_ROM(0x8086, 0x10ba, "e1000-0x10ba", "e1000-0x10ba"),
PCI_ROM(0x8086, 0x10bb, "e1000-0x10bb", "e1000-0x10bb"),
PCI_ROM(0x8086, 0x10bc, "e1000-0x10bc", "e1000-0x10bc"),
PCI_ROM(0x8086, 0x10c4, "e1000-0x10c4", "e1000-0x10c4"),
PCI_ROM(0x8086, 0x10c5, "e1000-0x10c5", "e1000-0x10c5"),
PCI_ROM(0x8086, 0x10d9, "e1000-0x10d9", "e1000-0x10d9"),
PCI_ROM(0x8086, 0x10da, "e1000-0x10da", "e1000-0x10da"),
PCI_ROM(0x8086, 0x1000, "e1000-0x1000", "e1000-0x1000", 0),
PCI_ROM(0x8086, 0x1001, "e1000-0x1001", "e1000-0x1001", 0),
PCI_ROM(0x8086, 0x1004, "e1000-0x1004", "e1000-0x1004", 0),
PCI_ROM(0x8086, 0x1008, "e1000-0x1008", "e1000-0x1008", 0),
PCI_ROM(0x8086, 0x1009, "e1000-0x1009", "e1000-0x1009", 0),
PCI_ROM(0x8086, 0x100c, "e1000-0x100c", "e1000-0x100c", 0),
PCI_ROM(0x8086, 0x100d, "e1000-0x100d", "e1000-0x100d", 0),
PCI_ROM(0x8086, 0x100e, "e1000-0x100e", "e1000-0x100e", 0),
PCI_ROM(0x8086, 0x100f, "e1000-0x100f", "e1000-0x100f", 0),
PCI_ROM(0x8086, 0x1010, "e1000-0x1010", "e1000-0x1010", 0),
PCI_ROM(0x8086, 0x1011, "e1000-0x1011", "e1000-0x1011", 0),
PCI_ROM(0x8086, 0x1012, "e1000-0x1012", "e1000-0x1012", 0),
PCI_ROM(0x8086, 0x1013, "e1000-0x1013", "e1000-0x1013", 0),
PCI_ROM(0x8086, 0x1014, "e1000-0x1014", "e1000-0x1014", 0),
PCI_ROM(0x8086, 0x1015, "e1000-0x1015", "e1000-0x1015", 0),
PCI_ROM(0x8086, 0x1016, "e1000-0x1016", "e1000-0x1016", 0),
PCI_ROM(0x8086, 0x1017, "e1000-0x1017", "e1000-0x1017", 0),
PCI_ROM(0x8086, 0x1018, "e1000-0x1018", "e1000-0x1018", 0),
PCI_ROM(0x8086, 0x1019, "e1000-0x1019", "e1000-0x1019", 0),
PCI_ROM(0x8086, 0x101a, "e1000-0x101a", "e1000-0x101a", 0),
PCI_ROM(0x8086, 0x101d, "e1000-0x101d", "e1000-0x101d", 0),
PCI_ROM(0x8086, 0x101e, "e1000-0x101e", "e1000-0x101e", 0),
PCI_ROM(0x8086, 0x1026, "e1000-0x1026", "e1000-0x1026", 0),
PCI_ROM(0x8086, 0x1027, "e1000-0x1027", "e1000-0x1027", 0),
PCI_ROM(0x8086, 0x1028, "e1000-0x1028", "e1000-0x1028", 0),
PCI_ROM(0x8086, 0x1049, "e1000-0x1049", "e1000-0x1049", 0),
PCI_ROM(0x8086, 0x104a, "e1000-0x104a", "e1000-0x104a", 0),
PCI_ROM(0x8086, 0x104b, "e1000-0x104b", "e1000-0x104b", 0),
PCI_ROM(0x8086, 0x104c, "e1000-0x104c", "e1000-0x104c", 0),
PCI_ROM(0x8086, 0x104d, "e1000-0x104d", "e1000-0x104d", 0),
PCI_ROM(0x8086, 0x105e, "e1000-0x105e", "e1000-0x105e", 0),
PCI_ROM(0x8086, 0x105f, "e1000-0x105f", "e1000-0x105f", 0),
PCI_ROM(0x8086, 0x1060, "e1000-0x1060", "e1000-0x1060", 0),
PCI_ROM(0x8086, 0x1075, "e1000-0x1075", "e1000-0x1075", 0),
PCI_ROM(0x8086, 0x1076, "e1000-0x1076", "e1000-0x1076", 0),
PCI_ROM(0x8086, 0x1077, "e1000-0x1077", "e1000-0x1077", 0),
PCI_ROM(0x8086, 0x1078, "e1000-0x1078", "e1000-0x1078", 0),
PCI_ROM(0x8086, 0x1079, "e1000-0x1079", "e1000-0x1079", 0),
PCI_ROM(0x8086, 0x107a, "e1000-0x107a", "e1000-0x107a", 0),
PCI_ROM(0x8086, 0x107b, "e1000-0x107b", "e1000-0x107b", 0),
PCI_ROM(0x8086, 0x107c, "e1000-0x107c", "e1000-0x107c", 0),
PCI_ROM(0x8086, 0x107d, "e1000-0x107d", "e1000-0x107d", 0),
PCI_ROM(0x8086, 0x107e, "e1000-0x107e", "e1000-0x107e", 0),
PCI_ROM(0x8086, 0x107f, "e1000-0x107f", "e1000-0x107f", 0),
PCI_ROM(0x8086, 0x108a, "e1000-0x108a", "e1000-0x108a", 0),
PCI_ROM(0x8086, 0x108b, "e1000-0x108b", "e1000-0x108b", 0),
PCI_ROM(0x8086, 0x108c, "e1000-0x108c", "e1000-0x108c", 0),
PCI_ROM(0x8086, 0x1096, "e1000-0x1096", "e1000-0x1096", 0),
PCI_ROM(0x8086, 0x1098, "e1000-0x1098", "e1000-0x1098", 0),
PCI_ROM(0x8086, 0x1099, "e1000-0x1099", "e1000-0x1099", 0),
PCI_ROM(0x8086, 0x109a, "e1000-0x109a", "e1000-0x109a", 0),
PCI_ROM(0x8086, 0x10a4, "e1000-0x10a4", "e1000-0x10a4", 0),
PCI_ROM(0x8086, 0x10a5, "e1000-0x10a5", "e1000-0x10a5", 0),
PCI_ROM(0x8086, 0x10b5, "e1000-0x10b5", "e1000-0x10b5", 0),
PCI_ROM(0x8086, 0x10b9, "e1000-0x10b9", "e1000-0x10b9", 0),
PCI_ROM(0x8086, 0x10ba, "e1000-0x10ba", "e1000-0x10ba", 0),
PCI_ROM(0x8086, 0x10bb, "e1000-0x10bb", "e1000-0x10bb", 0),
PCI_ROM(0x8086, 0x10bc, "e1000-0x10bc", "e1000-0x10bc", 0),
PCI_ROM(0x8086, 0x10c4, "e1000-0x10c4", "e1000-0x10c4", 0),
PCI_ROM(0x8086, 0x10c5, "e1000-0x10c5", "e1000-0x10c5", 0),
PCI_ROM(0x8086, 0x10d9, "e1000-0x10d9", "e1000-0x10d9", 0),
PCI_ROM(0x8086, 0x10da, "e1000-0x10da", "e1000-0x10da", 0),
};

struct pci_driver e1000_driver __pci_driver = {
Expand Down

0 comments on commit 3da6f1c

Please sign in to comment.