linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 04/86] powerpc/pci: use uapi/linux/pci_ids.h directly
       [not found] <1427635734-24786-1-git-send-email-mst@redhat.com>
@ 2015-03-29 13:37 ` Michael S. Tsirkin
  2015-03-29 13:40 ` [PATCH 33/86] edac/pasemi: " Michael S. Tsirkin
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 4+ messages in thread
From: Michael S. Tsirkin @ 2015-03-29 13:37 UTC (permalink / raw)
  To: linux-kernel; +Cc: Paul Mackerras, linuxppc-dev

Header moved from linux/pci_ids.h to uapi/linux/pci_ids.h,
use the new header directly so we can drop
the wrapper in include/linux/pci_ids.h.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 arch/powerpc/platforms/embedded6xx/mpc10x.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/powerpc/platforms/embedded6xx/mpc10x.h b/arch/powerpc/platforms/embedded6xx/mpc10x.h
index b290b63..4175800 100644
--- a/arch/powerpc/platforms/embedded6xx/mpc10x.h
+++ b/arch/powerpc/platforms/embedded6xx/mpc10x.h
@@ -13,7 +13,7 @@
 #ifndef __PPC_KERNEL_MPC10X_H
 #define __PPC_KERNEL_MPC10X_H
 
-#include <linux/pci_ids.h>
+#include <uapi/linux/pci_ids.h>
 #include <asm/pci-bridge.h>
 
 /*
@@ -35,7 +35,7 @@
 
 /*
  * Define the vendor/device IDs for the various bridges--should be added to
- * <linux/pci_ids.h>
+ * <uapi/linux/pci_ids.h>
  */
 #define	MPC10X_BRIDGE_106	((PCI_DEVICE_ID_MOTOROLA_MPC106 << 16) |  \
 				  PCI_VENDOR_ID_MOTOROLA)
-- 
MST

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

* [PATCH 33/86] edac/pasemi: use uapi/linux/pci_ids.h directly
       [not found] <1427635734-24786-1-git-send-email-mst@redhat.com>
  2015-03-29 13:37 ` [PATCH 04/86] powerpc/pci: use uapi/linux/pci_ids.h directly Michael S. Tsirkin
@ 2015-03-29 13:40 ` Michael S. Tsirkin
  2015-03-29 13:40 ` [PATCH 43/86] macintosh: " Michael S. Tsirkin
  2015-03-29 13:41 ` [PATCH 51/86] cxl: " Michael S. Tsirkin
  3 siblings, 0 replies; 4+ messages in thread
From: Michael S. Tsirkin @ 2015-03-29 13:40 UTC (permalink / raw)
  To: linux-kernel
  Cc: Mauro Carvalho Chehab, Borislav Petkov, Doug Thompson,
	Olof Johansson, Egor Martovetsky, linuxppc-dev, linux-edac

Header moved from linux/pci_ids.h to uapi/linux/pci_ids.h,
use the new header directly so we can drop
the wrapper in include/linux/pci_ids.h.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 drivers/edac/pasemi_edac.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/edac/pasemi_edac.c b/drivers/edac/pasemi_edac.c
index 9c971b5..cd0da08 100644
--- a/drivers/edac/pasemi_edac.c
+++ b/drivers/edac/pasemi_edac.c
@@ -24,7 +24,7 @@
 #include <linux/module.h>
 #include <linux/init.h>
 #include <linux/pci.h>
-#include <linux/pci_ids.h>
+#include <uapi/linux/pci_ids.h>
 #include <linux/edac.h>
 #include "edac_core.h"
 
-- 
MST

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

* [PATCH 43/86] macintosh: use uapi/linux/pci_ids.h directly
       [not found] <1427635734-24786-1-git-send-email-mst@redhat.com>
  2015-03-29 13:37 ` [PATCH 04/86] powerpc/pci: use uapi/linux/pci_ids.h directly Michael S. Tsirkin
  2015-03-29 13:40 ` [PATCH 33/86] edac/pasemi: " Michael S. Tsirkin
@ 2015-03-29 13:40 ` Michael S. Tsirkin
  2015-03-29 13:41 ` [PATCH 51/86] cxl: " Michael S. Tsirkin
  3 siblings, 0 replies; 4+ messages in thread
From: Michael S. Tsirkin @ 2015-03-29 13:40 UTC (permalink / raw)
  To: linux-kernel; +Cc: linuxppc-dev

Header moved from linux/pci_ids.h to uapi/linux/pci_ids.h,
use the new header directly so we can drop
the wrapper in include/linux/pci_ids.h.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 drivers/macintosh/macio_asic.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/macintosh/macio_asic.c b/drivers/macintosh/macio_asic.c
index 4f12c6f..ccf9547 100644
--- a/drivers/macintosh/macio_asic.c
+++ b/drivers/macintosh/macio_asic.c
@@ -20,7 +20,7 @@
 #include <linux/string.h>
 #include <linux/kernel.h>
 #include <linux/pci.h>
-#include <linux/pci_ids.h>
+#include <uapi/linux/pci_ids.h>
 #include <linux/init.h>
 #include <linux/module.h>
 #include <linux/slab.h>
-- 
MST

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

* [PATCH 51/86] cxl: use uapi/linux/pci_ids.h directly
       [not found] <1427635734-24786-1-git-send-email-mst@redhat.com>
                   ` (2 preceding siblings ...)
  2015-03-29 13:40 ` [PATCH 43/86] macintosh: " Michael S. Tsirkin
@ 2015-03-29 13:41 ` Michael S. Tsirkin
  3 siblings, 0 replies; 4+ messages in thread
From: Michael S. Tsirkin @ 2015-03-29 13:41 UTC (permalink / raw)
  To: linux-kernel; +Cc: Michael Neuling, linuxppc-dev, Ian Munsie

Header moved from linux/pci_ids.h to uapi/linux/pci_ids.h,
use the new header directly so we can drop
the wrapper in include/linux/pci_ids.h.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 drivers/misc/cxl/pci.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/misc/cxl/pci.c b/drivers/misc/cxl/pci.c
index 1ef0164..8f2a6c8 100644
--- a/drivers/misc/cxl/pci.c
+++ b/drivers/misc/cxl/pci.c
@@ -8,7 +8,7 @@
  */
 
 #include <linux/pci_regs.h>
-#include <linux/pci_ids.h>
+#include <uapi/linux/pci_ids.h>
 #include <linux/device.h>
 #include <linux/module.h>
 #include <linux/kernel.h>
-- 
MST

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

end of thread, other threads:[~2015-03-29 13:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1427635734-24786-1-git-send-email-mst@redhat.com>
2015-03-29 13:37 ` [PATCH 04/86] powerpc/pci: use uapi/linux/pci_ids.h directly Michael S. Tsirkin
2015-03-29 13:40 ` [PATCH 33/86] edac/pasemi: " Michael S. Tsirkin
2015-03-29 13:40 ` [PATCH 43/86] macintosh: " Michael S. Tsirkin
2015-03-29 13:41 ` [PATCH 51/86] cxl: " Michael S. Tsirkin

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