linux-ide.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Move various PCI IDs to header file
@ 2006-05-04 23:09 Brent Casavant
  2006-05-05  0:37 ` Randy.Dunlap
  2006-05-05 14:09 ` Jes Sorensen
  0 siblings, 2 replies; 11+ messages in thread
From: Brent Casavant @ 2006-05-04 23:09 UTC (permalink / raw)
  To: linux-kernel; +Cc: linux-ide, Andrew Morton, Jes Sorensen, Jeremy Higdon

Move various QLogic, Vitesse, and Intel storage
controller PCI IDs to the main header file.

Signed-off-by: Brent Casavant <bcasavan@sgi.com>

---

As suggested by Andrew Morton and Jes Sorenson.

 drivers/scsi/qla1280.c  |   24 ------------------------
 drivers/scsi/sata_vsc.c |   11 ++++++-----
 include/linux/pci_ids.h |    9 +++++++++
 3 files changed, 15 insertions(+), 29 deletions(-)

---
diff --git a/drivers/scsi/qla1280.c b/drivers/scsi/qla1280.c
index 5a48e55..00662a5 100644
--- a/drivers/scsi/qla1280.c
+++ b/drivers/scsi/qla1280.c
@@ -397,30 +397,6 @@
 #include "ql1280_fw.h"
 #include "ql1040_fw.h"
 
-
-/*
- * Missing PCI ID's
- */
-#ifndef PCI_DEVICE_ID_QLOGIC_ISP1080
-#define PCI_DEVICE_ID_QLOGIC_ISP1080	0x1080
-#endif
-#ifndef PCI_DEVICE_ID_QLOGIC_ISP1240
-#define PCI_DEVICE_ID_QLOGIC_ISP1240	0x1240
-#endif
-#ifndef PCI_DEVICE_ID_QLOGIC_ISP1280
-#define PCI_DEVICE_ID_QLOGIC_ISP1280	0x1280
-#endif
-#ifndef PCI_DEVICE_ID_QLOGIC_ISP10160
-#define PCI_DEVICE_ID_QLOGIC_ISP10160	0x1016
-#endif
-#ifndef PCI_DEVICE_ID_QLOGIC_ISP12160
-#define PCI_DEVICE_ID_QLOGIC_ISP12160	0x1216
-#endif
-
-#ifndef PCI_VENDOR_ID_AMI
-#define PCI_VENDOR_ID_AMI               0x101e
-#endif
-
 #ifndef BITS_PER_LONG
 #error "BITS_PER_LONG not defined!"
 #endif
diff --git a/drivers/scsi/sata_vsc.c b/drivers/scsi/sata_vsc.c
index 8a29ce3..27d6587 100644
--- a/drivers/scsi/sata_vsc.c
+++ b/drivers/scsi/sata_vsc.c
@@ -433,13 +433,14 @@ err_out:
 
 
 /*
- * 0x1725/0x7174 is the Vitesse VSC-7174
- * 0x8086/0x3200 is the Intel 31244, which is supposed to be identical
- * compatibility is untested as of yet
+ * Intel 31244 is supposed to be identical.
+ * Compatibility is untested as of yet.
  */
 static const struct pci_device_id vsc_sata_pci_tbl[] = {
-	{ 0x1725, 0x7174, PCI_ANY_ID, PCI_ANY_ID, 0x10600, 0xFFFFFF, 0 },
-	{ 0x8086, 0x3200, PCI_ANY_ID, PCI_ANY_ID, 0x10600, 0xFFFFFF, 0 },
+	{ PCI_VENDOR_ID_VITESSE, PCI_DEVICE_ID_VITESSE_VSC7174,
+	  PCI_ANY_ID, PCI_ANY_ID, 0x10600, 0xFFFFFF, 0 },
+	{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_GD31244,
+	  PCI_ANY_ID, PCI_ANY_ID, 0x10600, 0xFFFFFF, 0 },
 	{ }
 };
 
diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h
index d6fe048..c380faf 100644
--- a/include/linux/pci_ids.h
+++ b/include/linux/pci_ids.h
@@ -848,7 +848,12 @@
 
 
 #define PCI_VENDOR_ID_QLOGIC		0x1077
+#define PCI_DEVICE_ID_QLOGIC_ISP10160	0x1016
 #define PCI_DEVICE_ID_QLOGIC_ISP1020	0x1020
+#define PCI_DEVICE_ID_QLOGIC_ISP1080	0x1080
+#define PCI_DEVICE_ID_QLOGIC_ISP12160	0x1216
+#define PCI_DEVICE_ID_QLOGIC_ISP1240	0x1240
+#define PCI_DEVICE_ID_QLOGIC_ISP1280	0x1280
 #define PCI_DEVICE_ID_QLOGIC_ISP2100	0x2100
 #define PCI_DEVICE_ID_QLOGIC_ISP2200	0x2200
 #define PCI_DEVICE_ID_QLOGIC_ISP2300	0x2300
@@ -1957,6 +1962,9 @@
 #define PCI_VENDOR_ID_NETCELL		0x169c
 #define PCI_DEVICE_ID_REVOLUTION	0x0044
 
+#define PCI_VENDOR_ID_VITESSE		0x1725
+#define PCI_DEVICE_ID_VITESSE_VSC7174	0x7174
+
 #define PCI_VENDOR_ID_LINKSYS		0x1737
 #define PCI_DEVICE_ID_LINKSYS_EG1064	0x1064
 
@@ -2135,6 +2143,7 @@
 #define PCI_DEVICE_ID_INTEL_ICH8_4	0x2815
 #define PCI_DEVICE_ID_INTEL_ICH8_5	0x283e
 #define PCI_DEVICE_ID_INTEL_ICH8_6	0x2850
+#define PCI_DEVICE_ID_INTEL_GD31244	0x3200
 #define PCI_DEVICE_ID_INTEL_82855PM_HB	0x3340
 #define PCI_DEVICE_ID_INTEL_82830_HB	0x3575
 #define PCI_DEVICE_ID_INTEL_82830_CGC	0x3577

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH] Move various PCI IDs to header file
  2006-05-04 23:09 [PATCH] Move various PCI IDs to header file Brent Casavant
@ 2006-05-05  0:37 ` Randy.Dunlap
  2006-05-05  5:45   ` Jes Sorensen
  2006-05-05 14:09 ` Jes Sorensen
  1 sibling, 1 reply; 11+ messages in thread
From: Randy.Dunlap @ 2006-05-05  0:37 UTC (permalink / raw)
  To: Brent Casavant; +Cc: linux-kernel, linux-ide, akpm, jes, jeremy

On Thu, 4 May 2006 18:09:45 -0500 (CDT) Brent Casavant wrote:

> Move various QLogic, Vitesse, and Intel storage
> controller PCI IDs to the main header file.
> 
> Signed-off-by: Brent Casavant <bcasavan@sgi.com>
> 
> ---
> 
> As suggested by Andrew Morton and Jes Sorenson.

as compared to:
http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=9b860b8c4bde5949b272968597d1426d53080532


>  drivers/scsi/qla1280.c  |   24 ------------------------
>  drivers/scsi/sata_vsc.c |   11 ++++++-----
>  include/linux/pci_ids.h |    9 +++++++++
>  3 files changed, 15 insertions(+), 29 deletions(-)
> 
> ---
> diff --git a/drivers/scsi/qla1280.c b/drivers/scsi/qla1280.c
> index 5a48e55..00662a5 100644
> --- a/drivers/scsi/qla1280.c
> +++ b/drivers/scsi/qla1280.c
> @@ -397,30 +397,6 @@
>  #include "ql1280_fw.h"
>  #include "ql1040_fw.h"
>  
> -
> -/*
> - * Missing PCI ID's
> - */
> -#ifndef PCI_DEVICE_ID_QLOGIC_ISP1080
> -#define PCI_DEVICE_ID_QLOGIC_ISP1080	0x1080
> -#endif
> -#ifndef PCI_DEVICE_ID_QLOGIC_ISP1240
> -#define PCI_DEVICE_ID_QLOGIC_ISP1240	0x1240
> -#endif
> -#ifndef PCI_DEVICE_ID_QLOGIC_ISP1280
> -#define PCI_DEVICE_ID_QLOGIC_ISP1280	0x1280
> -#endif
> -#ifndef PCI_DEVICE_ID_QLOGIC_ISP10160
> -#define PCI_DEVICE_ID_QLOGIC_ISP10160	0x1016
> -#endif
> -#ifndef PCI_DEVICE_ID_QLOGIC_ISP12160
> -#define PCI_DEVICE_ID_QLOGIC_ISP12160	0x1216
> -#endif
> -
> -#ifndef PCI_VENDOR_ID_AMI
> -#define PCI_VENDOR_ID_AMI               0x101e
> -#endif
> -
>  #ifndef BITS_PER_LONG
>  #error "BITS_PER_LONG not defined!"
>  #endif
> diff --git a/drivers/scsi/sata_vsc.c b/drivers/scsi/sata_vsc.c
> index 8a29ce3..27d6587 100644
> --- a/drivers/scsi/sata_vsc.c
> +++ b/drivers/scsi/sata_vsc.c
> @@ -433,13 +433,14 @@ err_out:
>  
>  
>  /*
> - * 0x1725/0x7174 is the Vitesse VSC-7174
> - * 0x8086/0x3200 is the Intel 31244, which is supposed to be identical
> - * compatibility is untested as of yet
> + * Intel 31244 is supposed to be identical.
> + * Compatibility is untested as of yet.
>   */
>  static const struct pci_device_id vsc_sata_pci_tbl[] = {
> -	{ 0x1725, 0x7174, PCI_ANY_ID, PCI_ANY_ID, 0x10600, 0xFFFFFF, 0 },
> -	{ 0x8086, 0x3200, PCI_ANY_ID, PCI_ANY_ID, 0x10600, 0xFFFFFF, 0 },
> +	{ PCI_VENDOR_ID_VITESSE, PCI_DEVICE_ID_VITESSE_VSC7174,
> +	  PCI_ANY_ID, PCI_ANY_ID, 0x10600, 0xFFFFFF, 0 },
> +	{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_GD31244,
> +	  PCI_ANY_ID, PCI_ANY_ID, 0x10600, 0xFFFFFF, 0 },
>  	{ }
>  };
>  
> diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h
> index d6fe048..c380faf 100644
> --- a/include/linux/pci_ids.h
> +++ b/include/linux/pci_ids.h
> @@ -848,7 +848,12 @@
>  
>  
>  #define PCI_VENDOR_ID_QLOGIC		0x1077
> +#define PCI_DEVICE_ID_QLOGIC_ISP10160	0x1016
>  #define PCI_DEVICE_ID_QLOGIC_ISP1020	0x1020
> +#define PCI_DEVICE_ID_QLOGIC_ISP1080	0x1080
> +#define PCI_DEVICE_ID_QLOGIC_ISP12160	0x1216
> +#define PCI_DEVICE_ID_QLOGIC_ISP1240	0x1240
> +#define PCI_DEVICE_ID_QLOGIC_ISP1280	0x1280
>  #define PCI_DEVICE_ID_QLOGIC_ISP2100	0x2100
>  #define PCI_DEVICE_ID_QLOGIC_ISP2200	0x2200
>  #define PCI_DEVICE_ID_QLOGIC_ISP2300	0x2300
> @@ -1957,6 +1962,9 @@
>  #define PCI_VENDOR_ID_NETCELL		0x169c
>  #define PCI_DEVICE_ID_REVOLUTION	0x0044
>  
> +#define PCI_VENDOR_ID_VITESSE		0x1725
> +#define PCI_DEVICE_ID_VITESSE_VSC7174	0x7174
> +
>  #define PCI_VENDOR_ID_LINKSYS		0x1737
>  #define PCI_DEVICE_ID_LINKSYS_EG1064	0x1064
>  
> @@ -2135,6 +2143,7 @@
>  #define PCI_DEVICE_ID_INTEL_ICH8_4	0x2815
>  #define PCI_DEVICE_ID_INTEL_ICH8_5	0x283e
>  #define PCI_DEVICE_ID_INTEL_ICH8_6	0x2850
> +#define PCI_DEVICE_ID_INTEL_GD31244	0x3200
>  #define PCI_DEVICE_ID_INTEL_82855PM_HB	0x3340
>  #define PCI_DEVICE_ID_INTEL_82830_HB	0x3575
>  #define PCI_DEVICE_ID_INTEL_82830_CGC	0x3577
> -
> To unsubscribe from this list: send the line "unsubscribe linux-ide" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 


---
~Randy

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] Move various PCI IDs to header file
  2006-05-05  0:37 ` Randy.Dunlap
@ 2006-05-05  5:45   ` Jes Sorensen
  2006-05-05 13:34     ` Greg KH
  2006-05-05 16:27     ` Randy.Dunlap
  0 siblings, 2 replies; 11+ messages in thread
From: Jes Sorensen @ 2006-05-05  5:45 UTC (permalink / raw)
  To: Randy.Dunlap; +Cc: Brent Casavant, linux-kernel, linux-ide, akpm, jeremy

Randy.Dunlap wrote:
> On Thu, 4 May 2006 18:09:45 -0500 (CDT) Brent Casavant wrote:
> 
>> Move various QLogic, Vitesse, and Intel storage
>> controller PCI IDs to the main header file.
>>
>> Signed-off-by: Brent Casavant <bcasavan@sgi.com>
>>
>> ---
>>
>> As suggested by Andrew Morton and Jes Sorenson.
> 
> as compared to:
> http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=9b860b8c4bde5949b272968597d1426d53080532

I guess Andrew and I should be blamed for that. I Andrew suggested
putting the IDs in the 'right place' and I took the right place as being
the pci_ids.h file.

Can't say I agree with the recommendation, having them in pci_ids.h is
nice and clean and it allows one to go look through the list, instead
they now really become random hex values :( Brent's patch is a perfect
example of IDs being used in multiple places, ie. the qla1280 driver
and in the IOC4 driver, so the claim in that Documentation/ file doesn't
hold water.

Anyway, if this is the new rule, then I guess it's back to using the
ugly patch :(

Jes

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] Move various PCI IDs to header file
  2006-05-05  5:45   ` Jes Sorensen
@ 2006-05-05 13:34     ` Greg KH
  2006-05-13  4:29       ` Jeff Garzik
  2006-05-05 16:27     ` Randy.Dunlap
  1 sibling, 1 reply; 11+ messages in thread
From: Greg KH @ 2006-05-05 13:34 UTC (permalink / raw)
  To: Jes Sorensen
  Cc: Randy.Dunlap, Brent Casavant, linux-kernel, linux-ide, akpm,
	jeremy

On Fri, May 05, 2006 at 07:45:52AM +0200, Jes Sorensen wrote:
> Randy.Dunlap wrote:
> >On Thu, 4 May 2006 18:09:45 -0500 (CDT) Brent Casavant wrote:
> >
> >>Move various QLogic, Vitesse, and Intel storage
> >>controller PCI IDs to the main header file.
> >>
> >>Signed-off-by: Brent Casavant <bcasavan@sgi.com>
> >>
> >>---
> >>
> >>As suggested by Andrew Morton and Jes Sorenson.
> >
> >as compared to:
> >http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=9b860b8c4bde5949b272968597d1426d53080532
> 
> I guess Andrew and I should be blamed for that. I Andrew suggested
> putting the IDs in the 'right place' and I took the right place as being
> the pci_ids.h file.
> 
> Can't say I agree with the recommendation, having them in pci_ids.h is
> nice and clean and it allows one to go look through the list, instead
> they now really become random hex values :( Brent's patch is a perfect
> example of IDs being used in multiple places, ie. the qla1280 driver
> and in the IOC4 driver, so the claim in that Documentation/ file doesn't
> hold water.
> 
> Anyway, if this is the new rule, then I guess it's back to using the
> ugly patch :(

No, I agree with your patch, as you are having to reference the ids from
2 different files.  So because of that, I feel it's ok to have those ids
in the pci_id.h file.

Yes, the wording in the documentation file should be cleaned up a bit to
state this a bit better...

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] Move various PCI IDs to header file
  2006-05-04 23:09 [PATCH] Move various PCI IDs to header file Brent Casavant
  2006-05-05  0:37 ` Randy.Dunlap
@ 2006-05-05 14:09 ` Jes Sorensen
  1 sibling, 0 replies; 11+ messages in thread
From: Jes Sorensen @ 2006-05-05 14:09 UTC (permalink / raw)
  To: Brent Casavant; +Cc: linux-kernel, linux-ide, Andrew Morton, Jeremy Higdon

Brent Casavant wrote:
> Move various QLogic, Vitesse, and Intel storage
> controller PCI IDs to the main header file.
> 
> Signed-off-by: Brent Casavant <bcasavan@sgi.com>

Acked-by: Jes Sorensen <jes@sgi.com>

After all I tend to get the blame for the qla1280 driver.

Cheers,
Jes

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] Move various PCI IDs to header file
  2006-05-05  5:45   ` Jes Sorensen
  2006-05-05 13:34     ` Greg KH
@ 2006-05-05 16:27     ` Randy.Dunlap
  2006-05-05 22:37       ` Grant Coady
  1 sibling, 1 reply; 11+ messages in thread
From: Randy.Dunlap @ 2006-05-05 16:27 UTC (permalink / raw)
  To: Jes Sorensen
  Cc: Randy.Dunlap, Brent Casavant, linux-kernel, linux-ide, akpm,
	jeremy

On Fri, 5 May 2006, Jes Sorensen wrote:

> Randy.Dunlap wrote:
> > On Thu, 4 May 2006 18:09:45 -0500 (CDT) Brent Casavant wrote:
> >
> >> Move various QLogic, Vitesse, and Intel storage
> >> controller PCI IDs to the main header file.
> >>
> >> Signed-off-by: Brent Casavant <bcasavan@sgi.com>
> >>
> >> ---
> >>
> >> As suggested by Andrew Morton and Jes Sorenson.
> >
> > as compared to:
> > http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=9b860b8c4bde5949b272968597d1426d53080532
>
> I guess Andrew and I should be blamed for that. I Andrew suggested
> putting the IDs in the 'right place' and I took the right place as being
> the pci_ids.h file.
>
> Can't say I agree with the recommendation, having them in pci_ids.h is
> nice and clean and it allows one to go look through the list, instead
> they now really become random hex values :( Brent's patch is a perfect
> example of IDs being used in multiple places, ie. the qla1280 driver
> and in the IOC4 driver, so the claim in that Documentation/ file doesn't
> hold water.
>
> Anyway, if this is the new rule, then I guess it's back to using the
> ugly patch :(

FWIW, I'm not saying that I agree with the new rule, just that
it's there/merged.

-- 
~Randy

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] Move various PCI IDs to header file
  2006-05-05 16:27     ` Randy.Dunlap
@ 2006-05-05 22:37       ` Grant Coady
  2006-05-08  7:55         ` Jes Sorensen
  0 siblings, 1 reply; 11+ messages in thread
From: Grant Coady @ 2006-05-05 22:37 UTC (permalink / raw)
  Cc: Jes Sorensen, Randy.Dunlap, Brent Casavant, linux-kernel,
	linux-ide, akpm, jeremy

On Fri, 5 May 2006 09:27:06 -0700 (PDT), "Randy.Dunlap" <rdunlap@xenotime.net> wrote:

>On Fri, 5 May 2006, Jes Sorensen wrote:
>
>> Randy.Dunlap wrote:
>> > On Thu, 4 May 2006 18:09:45 -0500 (CDT) Brent Casavant wrote:
>> >
>> >> Move various QLogic, Vitesse, and Intel storage
>> >> controller PCI IDs to the main header file.
>> >>
>> >> Signed-off-by: Brent Casavant <bcasavan@sgi.com>
>> >>
>> >> ---
>> >>
>> >> As suggested by Andrew Morton and Jes Sorenson.
>> >
>> > as compared to:
>> > http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=9b860b8c4bde5949b272968597d1426d53080532
>>
>> I guess Andrew and I should be blamed for that. I Andrew suggested
>> putting the IDs in the 'right place' and I took the right place as being
>> the pci_ids.h file.
>>
>> Can't say I agree with the recommendation, having them in pci_ids.h is
>> nice and clean and it allows one to go look through the list, instead
>> they now really become random hex values :( Brent's patch is a perfect
>> example of IDs being used in multiple places, ie. the qla1280 driver
>> and in the IOC4 driver, so the claim in that Documentation/ file doesn't
>> hold water.
>>
>> Anyway, if this is the new rule, then I guess it's back to using the
>> ugly patch :(
>
>FWIW, I'm not saying that I agree with the new rule, just that
>it's there/merged.

When I worked on pci_ids.h cleanup last year I didn't get a clear 
idea of whether moving all #defines to the one header file was 
desired.  Last I looked there were heaps of them scattered all 
over.  Is there a preferred model for placing these #defines?

Grant.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] Move various PCI IDs to header file
  2006-05-05 22:37       ` Grant Coady
@ 2006-05-08  7:55         ` Jes Sorensen
  2006-05-08  8:31           ` Arjan van de Ven
  0 siblings, 1 reply; 11+ messages in thread
From: Jes Sorensen @ 2006-05-08  7:55 UTC (permalink / raw)
  To: Grant Coady
  Cc: Randy.Dunlap, Brent Casavant, linux-kernel, linux-ide, akpm,
	jeremy

Grant Coady wrote:
> When I worked on pci_ids.h cleanup last year I didn't get a clear 
> idea of whether moving all #defines to the one header file was 
> desired.  Last I looked there were heaps of them scattered all 
> over.  Is there a preferred model for placing these #defines?
> 
> Grant.

According to the document Randy referenced, the preferred place for
*new* defines is to stick them in the local files where they are used.
I don't think there is any preference for moving the out of pci_ids.h
as it would just cause patch noise for the sake of making noise.

So much for being able to go through the pci_ids.h file to get an idea
about whether or not a device may have a chance of being supported :(

Jes

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] Move various PCI IDs to header file
  2006-05-08  7:55         ` Jes Sorensen
@ 2006-05-08  8:31           ` Arjan van de Ven
  2006-05-08  8:35             ` Jes Sorensen
  0 siblings, 1 reply; 11+ messages in thread
From: Arjan van de Ven @ 2006-05-08  8:31 UTC (permalink / raw)
  To: Jes Sorensen
  Cc: Grant Coady, Randy.Dunlap, Brent Casavant, linux-kernel,
	linux-ide, akpm, jeremy

On Mon, 2006-05-08 at 09:55 +0200, Jes Sorensen wrote:
> Grant Coady wrote:
> > When I worked on pci_ids.h cleanup last year I didn't get a clear 
> > idea of whether moving all #defines to the one header file was 
> > desired.  Last I looked there were heaps of them scattered all 
> > over.  Is there a preferred model for placing these #defines?
> > 
> > Grant.
> 
> According to the document Randy referenced, the preferred place for
> *new* defines is to stick them in the local files where they are used.
> I don't think there is any preference for moving the out of pci_ids.h
> as it would just cause patch noise for the sake of making noise.
> 
> So much for being able to go through the pci_ids.h file to get an idea
> about whether or not a device may have a chance of being supported :(

that wasn't there ever anyway..

modules.pcimap is more like it anyway


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] Move various PCI IDs to header file
  2006-05-08  8:31           ` Arjan van de Ven
@ 2006-05-08  8:35             ` Jes Sorensen
  0 siblings, 0 replies; 11+ messages in thread
From: Jes Sorensen @ 2006-05-08  8:35 UTC (permalink / raw)
  To: Arjan van de Ven
  Cc: Grant Coady, Randy.Dunlap, Brent Casavant, linux-kernel,
	linux-ide, akpm, jeremy

Arjan van de Ven wrote:
> On Mon, 2006-05-08 at 09:55 +0200, Jes Sorensen wrote:
>> So much for being able to go through the pci_ids.h file to get an idea
>> about whether or not a device may have a chance of being supported :(
> 
> that wasn't there ever anyway..
> 
> modules.pcimap is more like it anyway

Wasn't bullet proof since some people just stuck it in their drivers due
to laziness, but it was a pretty good indicator. I've gone through it
many times to see if I could find a match for a device ;(

Anyway ....

Cheers,
Jes

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] Move various PCI IDs to header file
  2006-05-05 13:34     ` Greg KH
@ 2006-05-13  4:29       ` Jeff Garzik
  0 siblings, 0 replies; 11+ messages in thread
From: Jeff Garzik @ 2006-05-13  4:29 UTC (permalink / raw)
  To: Greg KH
  Cc: Jes Sorensen, Randy.Dunlap, Brent Casavant, linux-kernel,
	linux-ide, akpm, jeremy


(since I was an instigator here...)

Greg KH wrote:
> No, I agree with your patch, as you are having to reference the ids from
> 2 different files.  So because of that, I feel it's ok to have those ids
> in the pci_id.h file.

Agreed.


> Yes, the wording in the documentation file should be cleaned up a bit to
> state this a bit better...

Agreed.

	Jeff




^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2006-05-13  4:29 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-05-04 23:09 [PATCH] Move various PCI IDs to header file Brent Casavant
2006-05-05  0:37 ` Randy.Dunlap
2006-05-05  5:45   ` Jes Sorensen
2006-05-05 13:34     ` Greg KH
2006-05-13  4:29       ` Jeff Garzik
2006-05-05 16:27     ` Randy.Dunlap
2006-05-05 22:37       ` Grant Coady
2006-05-08  7:55         ` Jes Sorensen
2006-05-08  8:31           ` Arjan van de Ven
2006-05-08  8:35             ` Jes Sorensen
2006-05-05 14:09 ` Jes Sorensen

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).