Messages in this thread Patch in this message |  | | | Date | Fri, 25 Aug 2000 10:22:39 -0400 | | From | Torben Mathiasen <> | | Subject | Re: [PATCH] Support for i82562EM in eepro100 driver | |
And here's the one with the patch..
Torben
On Fri, Aug 25 2000, Torben Mathiasen wrote:
> Hi,
>
> This small attached patch adds support for the Pro100/VM adapter found in
> several newer Compaq Deskpro systems.
>
> Patch is against 2.2.17-pre20, but also applies to stock 2.2.16.
>
>
> Regards,
>
> Torben Mathiasen
diff -ur --exclude-from=/root/torben linux-2.2.17-pre20/drivers/net/eepro100.c linux/drivers/net/eepro100.c
--- linux-2.2.17-pre20/drivers/net/eepro100.c Thu Aug 24 21:05:31 2000
+++ linux/drivers/net/eepro100.c Thu Aug 24 20:59:21 2000
@@ -167,6 +167,9 @@
#ifndef PCI_DEVICE_ID_INTEL_ID1030
#define PCI_DEVICE_ID_INTEL_ID1030 0x1030
#endif
+#ifndef PCI_DEVICE_ID_INTEL_ID2449
+#define PCI_DEVICE_ID_INTEL_ID2449 0x2449
+#endif
/* The total I/O port extent of the board.
The registers beyond 0x18 only exist on the i82558. */
@@ -325,6 +328,10 @@
{ "Intel Corporation 82559 InBusiness 10/100",
PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ID1030,
0
+ },
+ { "Intel PCI EtherExpress Pro100 82562EM",
+ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ID2449,
+ 0
},
{0,} /* 0 terminated list. */
}; |  |