linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] usb: dwc3: Moved PCI IDS to linux/pci_ids.h
@ 2015-02-16  0:17 Joseph Kogut
  2015-02-16 14:59 ` Bjorn Helgaas
  0 siblings, 1 reply; 4+ messages in thread
From: Joseph Kogut @ 2015-02-16  0:17 UTC (permalink / raw)
  To: balbi, gregkh; +Cc: bhelgaas, linux-usb, linux-kernel, Joseph Kogut

Moved DWC3 PCI IDS to linux/pci_ids.h per the FIXME.

Signed-off-by: Joseph Kogut <joseph.kogut@gmail.com>
---
 drivers/usb/dwc3/dwc3-pci.c | 10 +---------
 include/linux/pci_ids.h     |  8 ++++++++
 2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/drivers/usb/dwc3/dwc3-pci.c b/drivers/usb/dwc3/dwc3-pci.c
index 8d95056..19ca7f6 100644
--- a/drivers/usb/dwc3/dwc3-pci.c
+++ b/drivers/usb/dwc3/dwc3-pci.c
@@ -20,19 +20,11 @@
 #include <linux/module.h>
 #include <linux/slab.h>
 #include <linux/pci.h>
+#include <linux/pci_ids.h>
 #include <linux/platform_device.h>
 
 #include "platform_data.h"
 
-/* FIXME define these in <linux/pci_ids.h> */
-#define PCI_VENDOR_ID_SYNOPSYS		0x16c3
-#define PCI_DEVICE_ID_SYNOPSYS_HAPSUSB3	0xabcd
-#define PCI_DEVICE_ID_INTEL_BYT		0x0f37
-#define PCI_DEVICE_ID_INTEL_MRFLD	0x119e
-#define PCI_DEVICE_ID_INTEL_BSW		0x22B7
-#define PCI_DEVICE_ID_INTEL_SPTLP	0x9d30
-#define PCI_DEVICE_ID_INTEL_SPTH	0xa130
-
 static int dwc3_pci_quirks(struct pci_dev *pdev)
 {
 	if (pdev->vendor == PCI_VENDOR_ID_AMD &&
diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h
index e63c02a..6fc5cdd 100644
--- a/include/linux/pci_ids.h
+++ b/include/linux/pci_ids.h
@@ -2312,6 +2312,9 @@
 #define PCI_VENDOR_ID_NETCELL		0x169c
 #define PCI_DEVICE_ID_REVOLUTION	0x0044
 
+#define PCI_VENDOR_ID_SYNOPSYS		0x16c3
+#define PCI_DEVICE_ID_SYNOPSYS_HAPSUSB3	0xabcd
+
 #define PCI_VENDOR_ID_CENATEK		0x16CA
 #define PCI_DEVICE_ID_CENATEK_IDE	0x0001
 
@@ -2566,12 +2569,14 @@
 #define PCI_DEVICE_ID_INTEL_QUARK_X1000_ILB	0x095E
 #define PCI_DEVICE_ID_INTEL_I960	0x0960
 #define PCI_DEVICE_ID_INTEL_I960RM	0x0962
+#define PCI_DEVICE_ID_INTEL_BYT		0x0f37
 #define PCI_DEVICE_ID_INTEL_CENTERTON_ILB	0x0c60
 #define PCI_DEVICE_ID_INTEL_8257X_SOL	0x1062
 #define PCI_DEVICE_ID_INTEL_82573E_SOL	0x1085
 #define PCI_DEVICE_ID_INTEL_82573L_SOL	0x108F
 #define PCI_DEVICE_ID_INTEL_82815_MC	0x1130
 #define PCI_DEVICE_ID_INTEL_82815_CGC	0x1132
+#define PCI_DEVICE_ID_INTEL_MRFLD	0x119e
 #define PCI_DEVICE_ID_INTEL_82092AA_0	0x1221
 #define PCI_DEVICE_ID_INTEL_7505_0	0x2550
 #define PCI_DEVICE_ID_INTEL_7205_0	0x255d
@@ -2593,6 +2598,7 @@
 #define PCI_DEVICE_ID_INTEL_PANTHERPOINT_XHCI	0x1e31
 #define PCI_DEVICE_ID_INTEL_PANTHERPOINT_LPC_MIN	0x1e40
 #define PCI_DEVICE_ID_INTEL_PANTHERPOINT_LPC_MAX	0x1e5f
+#define PCI_DEVICE_ID_INTEL_BSW		0x22B7
 #define PCI_DEVICE_ID_INTEL_DH89XXCC_LPC_MIN	0x2310
 #define PCI_DEVICE_ID_INTEL_DH89XXCC_LPC_MAX	0x231f
 #define PCI_DEVICE_ID_INTEL_82801AA_0	0x2410
@@ -2891,6 +2897,8 @@
 #define PCI_DEVICE_ID_INTEL_84460GX	0x84ea
 #define PCI_DEVICE_ID_INTEL_IXP4XX	0x8500
 #define PCI_DEVICE_ID_INTEL_IXP2800	0x9004
+#define PCI_DEVICE_ID_INTEL_SPTLP	0x9d30
+#define PCI_DEVICE_ID_INTEL_SPTH	0xa130
 #define PCI_DEVICE_ID_INTEL_S21152BB	0xb152
 
 #define PCI_VENDOR_ID_SCALEMP		0x8686
-- 
2.3.0


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

* Re: [PATCH] usb: dwc3: Moved PCI IDS to linux/pci_ids.h
  2015-02-16  0:17 [PATCH] usb: dwc3: Moved PCI IDS to linux/pci_ids.h Joseph Kogut
@ 2015-02-16 14:59 ` Bjorn Helgaas
  2015-02-16 16:27   ` Joseph Kogut
  0 siblings, 1 reply; 4+ messages in thread
From: Bjorn Helgaas @ 2015-02-16 14:59 UTC (permalink / raw)
  To: Joseph Kogut; +Cc: Felipe Balbi, Greg Kroah-Hartman, USB list, linux-kernel

On Sun, Feb 15, 2015 at 6:17 PM, Joseph Kogut <joseph.kogut@gmail.com> wrote:
> Moved DWC3 PCI IDS to linux/pci_ids.h per the FIXME.
>
> Signed-off-by: Joseph Kogut <joseph.kogut@gmail.com>
> ---
>  drivers/usb/dwc3/dwc3-pci.c | 10 +---------
>  include/linux/pci_ids.h     |  8 ++++++++
>  2 files changed, 9 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/usb/dwc3/dwc3-pci.c b/drivers/usb/dwc3/dwc3-pci.c
> index 8d95056..19ca7f6 100644
> --- a/drivers/usb/dwc3/dwc3-pci.c
> +++ b/drivers/usb/dwc3/dwc3-pci.c
> @@ -20,19 +20,11 @@
>  #include <linux/module.h>
>  #include <linux/slab.h>
>  #include <linux/pci.h>
> +#include <linux/pci_ids.h>
>  #include <linux/platform_device.h>
>
>  #include "platform_data.h"
>
> -/* FIXME define these in <linux/pci_ids.h> */
> -#define PCI_VENDOR_ID_SYNOPSYS         0x16c3
> -#define PCI_DEVICE_ID_SYNOPSYS_HAPSUSB3        0xabcd
> -#define PCI_DEVICE_ID_INTEL_BYT                0x0f37
> -#define PCI_DEVICE_ID_INTEL_MRFLD      0x119e
> -#define PCI_DEVICE_ID_INTEL_BSW                0x22B7
> -#define PCI_DEVICE_ID_INTEL_SPTLP      0x9d30
> -#define PCI_DEVICE_ID_INTEL_SPTH       0xa130

It looks like these constants are used only in this file.  If that's
the case, the comment at the top of pci_ids.h applies, the definitions
can stay here, and you can just remove the "FIXME" comment.

>  static int dwc3_pci_quirks(struct pci_dev *pdev)
>  {
>         if (pdev->vendor == PCI_VENDOR_ID_AMD &&
> diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h
> index e63c02a..6fc5cdd 100644
> --- a/include/linux/pci_ids.h
> +++ b/include/linux/pci_ids.h
> @@ -2312,6 +2312,9 @@
>  #define PCI_VENDOR_ID_NETCELL          0x169c
>  #define PCI_DEVICE_ID_REVOLUTION       0x0044
>
> +#define PCI_VENDOR_ID_SYNOPSYS         0x16c3
> +#define PCI_DEVICE_ID_SYNOPSYS_HAPSUSB3        0xabcd
> +
>  #define PCI_VENDOR_ID_CENATEK          0x16CA
>  #define PCI_DEVICE_ID_CENATEK_IDE      0x0001
>
> @@ -2566,12 +2569,14 @@
>  #define PCI_DEVICE_ID_INTEL_QUARK_X1000_ILB    0x095E
>  #define PCI_DEVICE_ID_INTEL_I960       0x0960
>  #define PCI_DEVICE_ID_INTEL_I960RM     0x0962
> +#define PCI_DEVICE_ID_INTEL_BYT                0x0f37
>  #define PCI_DEVICE_ID_INTEL_CENTERTON_ILB      0x0c60
>  #define PCI_DEVICE_ID_INTEL_8257X_SOL  0x1062
>  #define PCI_DEVICE_ID_INTEL_82573E_SOL 0x1085
>  #define PCI_DEVICE_ID_INTEL_82573L_SOL 0x108F
>  #define PCI_DEVICE_ID_INTEL_82815_MC   0x1130
>  #define PCI_DEVICE_ID_INTEL_82815_CGC  0x1132
> +#define PCI_DEVICE_ID_INTEL_MRFLD      0x119e
>  #define PCI_DEVICE_ID_INTEL_82092AA_0  0x1221
>  #define PCI_DEVICE_ID_INTEL_7505_0     0x2550
>  #define PCI_DEVICE_ID_INTEL_7205_0     0x255d
> @@ -2593,6 +2598,7 @@
>  #define PCI_DEVICE_ID_INTEL_PANTHERPOINT_XHCI  0x1e31
>  #define PCI_DEVICE_ID_INTEL_PANTHERPOINT_LPC_MIN       0x1e40
>  #define PCI_DEVICE_ID_INTEL_PANTHERPOINT_LPC_MAX       0x1e5f
> +#define PCI_DEVICE_ID_INTEL_BSW                0x22B7
>  #define PCI_DEVICE_ID_INTEL_DH89XXCC_LPC_MIN   0x2310
>  #define PCI_DEVICE_ID_INTEL_DH89XXCC_LPC_MAX   0x231f
>  #define PCI_DEVICE_ID_INTEL_82801AA_0  0x2410
> @@ -2891,6 +2897,8 @@
>  #define PCI_DEVICE_ID_INTEL_84460GX    0x84ea
>  #define PCI_DEVICE_ID_INTEL_IXP4XX     0x8500
>  #define PCI_DEVICE_ID_INTEL_IXP2800    0x9004
> +#define PCI_DEVICE_ID_INTEL_SPTLP      0x9d30
> +#define PCI_DEVICE_ID_INTEL_SPTH       0xa130
>  #define PCI_DEVICE_ID_INTEL_S21152BB   0xb152
>
>  #define PCI_VENDOR_ID_SCALEMP          0x8686
> --
> 2.3.0
>

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

* Re: [PATCH] usb: dwc3: Moved PCI IDS to linux/pci_ids.h
  2015-02-16 14:59 ` Bjorn Helgaas
@ 2015-02-16 16:27   ` Joseph Kogut
  2015-02-16 19:39     ` Greg Kroah-Hartman
  0 siblings, 1 reply; 4+ messages in thread
From: Joseph Kogut @ 2015-02-16 16:27 UTC (permalink / raw)
  To: Bjorn Helgaas; +Cc: Felipe Balbi, Greg Kroah-Hartman, USB list, linux-kernel

It seems that the Synopsys vendor ID is used in usb/dwc2 as well, and
the rest of the definitions aren't referenced outside of usb/dwc3.
Would the proper approach be to move the Synopsys vendor ID to
linux/pci_ids.h, remove the redefinition in usb/dwc2, and remove the
fixme?

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

* Re: [PATCH] usb: dwc3: Moved PCI IDS to linux/pci_ids.h
  2015-02-16 16:27   ` Joseph Kogut
@ 2015-02-16 19:39     ` Greg Kroah-Hartman
  0 siblings, 0 replies; 4+ messages in thread
From: Greg Kroah-Hartman @ 2015-02-16 19:39 UTC (permalink / raw)
  To: Joseph Kogut; +Cc: Bjorn Helgaas, Felipe Balbi, USB list, linux-kernel

On Mon, Feb 16, 2015 at 09:27:09AM -0700, Joseph Kogut wrote:
> It seems that the Synopsys vendor ID is used in usb/dwc2 as well, and
> the rest of the definitions aren't referenced outside of usb/dwc3.
> Would the proper approach be to move the Synopsys vendor ID to
> linux/pci_ids.h, remove the redefinition in usb/dwc2, and remove the
> fixme?

That sounds like the "correct" fix for this.

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

end of thread, other threads:[~2015-02-16 19:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-16  0:17 [PATCH] usb: dwc3: Moved PCI IDS to linux/pci_ids.h Joseph Kogut
2015-02-16 14:59 ` Bjorn Helgaas
2015-02-16 16:27   ` Joseph Kogut
2015-02-16 19:39     ` Greg Kroah-Hartman

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