* [PATCH ] more eepro100 boards
@ 2003-11-18 22:06 Xose Vazquez Perez
2003-11-19 17:18 ` Jeff Garzik
2005-02-01 20:17 ` [ PATCH ] 2.6 eepro100: replace and delete duplicate ids Xose Vazquez Perez
0 siblings, 2 replies; 3+ messages in thread
From: Xose Vazquez Perez @ 2003-11-18 22:06 UTC (permalink / raw)
To: netdev, jgarzik
[-- Attachment #1: Type: text/plain, Size: 382 bytes --]
deleted PCI_DEVICE_ID_INTEL_82801BA_7, it's a duplicate of 0x2449
and added five boards:
0x1051
0x1052
0x1053
0x1054
0x1055
These should be deleted:
0x1035
0x1036
0x1037
0x1227
0x1228
0x5200
0x5201
Time ago, in conversation with some intel guys, they said me that
those boards are not compatibles with the driver. Do anyone run
eepro100 with any of those boards?
-thanks-
[-- Attachment #2: eepro100_idents.diff --]
[-- Type: text/plain, Size: 1222 bytes --]
--- linux/drivers/net/eepro100.c 2003-08-27 17:26:41.000000000 +0200
+++ new/drivers/net/eepro100.c 2003-11-18 22:10:32.000000000 +0100
@@ -2374,8 +2374,6 @@
PCI_ANY_ID, PCI_ANY_ID, },
{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82559ER,
PCI_ANY_ID, PCI_ANY_ID, },
- { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_7,
- PCI_ANY_ID, PCI_ANY_ID, },
{ PCI_VENDOR_ID_INTEL, 0x1029, PCI_ANY_ID, PCI_ANY_ID, },
{ PCI_VENDOR_ID_INTEL, 0x1030, PCI_ANY_ID, PCI_ANY_ID, },
{ PCI_VENDOR_ID_INTEL, 0x1031, PCI_ANY_ID, PCI_ANY_ID, },
@@ -2393,6 +2391,11 @@
{ PCI_VENDOR_ID_INTEL, 0x103D, PCI_ANY_ID, PCI_ANY_ID, },
{ PCI_VENDOR_ID_INTEL, 0x103E, PCI_ANY_ID, PCI_ANY_ID, },
{ PCI_VENDOR_ID_INTEL, 0x1050, PCI_ANY_ID, PCI_ANY_ID, },
+ { PCI_VENDOR_ID_INTEL, 0x1051, PCI_ANY_ID, PCI_ANY_ID, },
+ { PCI_VENDOR_ID_INTEL, 0x1052, PCI_ANY_ID, PCI_ANY_ID, },
+ { PCI_VENDOR_ID_INTEL, 0x1053, PCI_ANY_ID, PCI_ANY_ID, },
+ { PCI_VENDOR_ID_INTEL, 0x1054, PCI_ANY_ID, PCI_ANY_ID, },
+ { PCI_VENDOR_ID_INTEL, 0x1055, PCI_ANY_ID, PCI_ANY_ID, },
{ PCI_VENDOR_ID_INTEL, 0x1059, PCI_ANY_ID, PCI_ANY_ID, },
{ PCI_VENDOR_ID_INTEL, 0x1227, PCI_ANY_ID, PCI_ANY_ID, },
{ PCI_VENDOR_ID_INTEL, 0x1228, PCI_ANY_ID, PCI_ANY_ID, },
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH ] more eepro100 boards
2003-11-18 22:06 [PATCH ] more eepro100 boards Xose Vazquez Perez
@ 2003-11-19 17:18 ` Jeff Garzik
2005-02-01 20:17 ` [ PATCH ] 2.6 eepro100: replace and delete duplicate ids Xose Vazquez Perez
1 sibling, 0 replies; 3+ messages in thread
From: Jeff Garzik @ 2003-11-19 17:18 UTC (permalink / raw)
To: Xose Vazquez Perez; +Cc: netdev
Xose Vazquez Perez wrote:
> deleted PCI_DEVICE_ID_INTEL_82801BA_7, it's a duplicate of 0x2449
>
> and added five boards:
>
> 0x1051
> 0x1052
> 0x1053
> 0x1054
> 0x1055
>
>
> These should be deleted:
>
> 0x1035
> 0x1036
> 0x1037
> 0x1227
> 0x1228
> 0x5200
> 0x5201
>
> Time ago, in conversation with some intel guys, they said me that
> those boards are not compatibles with the driver. Do anyone run
> eepro100 with any of those boards?
Indeed.... I would like to delay this patch, until we are confirmed
that these pci ids do indeed work with eepro100.c. Once we get
confirmation, I am OK with applying.
Jeff
^ permalink raw reply [flat|nested] 3+ messages in thread
* [ PATCH ] 2.6 eepro100: replace and delete duplicate ids
2003-11-18 22:06 [PATCH ] more eepro100 boards Xose Vazquez Perez
2003-11-19 17:18 ` Jeff Garzik
@ 2005-02-01 20:17 ` Xose Vazquez Perez
1 sibling, 0 replies; 3+ messages in thread
From: Xose Vazquez Perez @ 2005-02-01 20:17 UTC (permalink / raw)
To: netdev; +Cc: jgarzik
[-- Attachment #1: Type: text/plain, Size: 171 bytes --]
hi,
- replace PCI_DEVICE_ID_INTEL_82557 and PCI_DEVICE_ID_INTEL_82559ER
with theirs hex numbers
- PCI_DEVICE_ID_INTEL_82801BA_7 is a duplicate of 0x2449.
-thanks-
[-- Attachment #2: eepro100_ids.diff --]
[-- Type: text/plain, Size: 769 bytes --]
--- linux2/drivers/net/eepro100.c 2005-01-22 19:22:54.000000000 +0100
+++ n/drivers/net/eepro100.c 2005-02-01 21:10:15.000000000 +0100
@@ -2355,12 +2355,8 @@
}
\f
static struct pci_device_id eepro100_pci_tbl[] = {
- { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82557,
- PCI_ANY_ID, PCI_ANY_ID, },
- { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82559ER,
- PCI_ANY_ID, PCI_ANY_ID, },
- { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_7,
- PCI_ANY_ID, PCI_ANY_ID, },
+ { PCI_VENDOR_ID_INTEL, 0x1229, PCI_ANY_ID, PCI_ANY_ID, },
+ { PCI_VENDOR_ID_INTEL, 0x1209, PCI_ANY_ID, PCI_ANY_ID, },
{ PCI_VENDOR_ID_INTEL, 0x1029, PCI_ANY_ID, PCI_ANY_ID, },
{ PCI_VENDOR_ID_INTEL, 0x1030, PCI_ANY_ID, PCI_ANY_ID, },
{ PCI_VENDOR_ID_INTEL, 0x1031, PCI_ANY_ID, PCI_ANY_ID, },
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2005-02-01 20:17 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-11-18 22:06 [PATCH ] more eepro100 boards Xose Vazquez Perez
2003-11-19 17:18 ` Jeff Garzik
2005-02-01 20:17 ` [ PATCH ] 2.6 eepro100: replace and delete duplicate ids Xose Vazquez Perez
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).