linux-fbdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 70/86] fbdev/gxt4500: use uapi/linux/pci_ids.h directly
       [not found] <1427635734-24786-1-git-send-email-mst@redhat.com>
@ 2015-03-29 13:42 ` Michael S. Tsirkin
  2015-03-29 13:42 ` [PATCH 71/86] fbdev/i740fb: " Michael S. Tsirkin
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 4+ messages in thread
From: Michael S. Tsirkin @ 2015-03-29 13:42 UTC (permalink / raw)
  To: linux-kernel
  Cc: Jean-Christophe Plagniol-Villard, Tomi Valkeinen,
	Laurent Pinchart, Daniel Vetter, Rob Clark, Jingoo Han,
	linux-fbdev

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/video/fbdev/gxt4500.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/video/fbdev/gxt4500.c b/drivers/video/fbdev/gxt4500.c
index 135d78a..2415d3d 100644
--- a/drivers/video/fbdev/gxt4500.c
+++ b/drivers/video/fbdev/gxt4500.c
@@ -10,7 +10,7 @@
 #include <linux/fb.h>
 #include <linux/console.h>
 #include <linux/pci.h>
-#include <linux/pci_ids.h>
+#include <uapi/linux/pci_ids.h>
 #include <linux/delay.h>
 #include <linux/string.h>
 
-- 
MST


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

* [PATCH 71/86] fbdev/i740fb: use uapi/linux/pci_ids.h directly
       [not found] <1427635734-24786-1-git-send-email-mst@redhat.com>
  2015-03-29 13:42 ` [PATCH 70/86] fbdev/gxt4500: use uapi/linux/pci_ids.h directly Michael S. Tsirkin
@ 2015-03-29 13:42 ` Michael S. Tsirkin
  2015-03-29 13:42 ` [PATCH 72/86] fbdev/i810: " Michael S. Tsirkin
  2015-03-29 13:42 ` [PATCH 73/86] fbdev/riva: " Michael S. Tsirkin
  3 siblings, 0 replies; 4+ messages in thread
From: Michael S. Tsirkin @ 2015-03-29 13:42 UTC (permalink / raw)
  To: linux-kernel
  Cc: Jean-Christophe Plagniol-Villard, Tomi Valkeinen, Bjorn Helgaas,
	Laurent Pinchart, Benoit Taine, linux-fbdev

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/video/fbdev/i740fb.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/video/fbdev/i740fb.c b/drivers/video/fbdev/i740fb.c
index a2b4204..abad615 100644
--- a/drivers/video/fbdev/i740fb.c
+++ b/drivers/video/fbdev/i740fb.c
@@ -21,7 +21,7 @@
 #include <linux/fb.h>
 #include <linux/init.h>
 #include <linux/pci.h>
-#include <linux/pci_ids.h>
+#include <uapi/linux/pci_ids.h>
 #include <linux/i2c.h>
 #include <linux/i2c-algo-bit.h>
 #include <linux/console.h>
-- 
MST


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

* [PATCH 72/86] fbdev/i810: use uapi/linux/pci_ids.h directly
       [not found] <1427635734-24786-1-git-send-email-mst@redhat.com>
  2015-03-29 13:42 ` [PATCH 70/86] fbdev/gxt4500: use uapi/linux/pci_ids.h directly Michael S. Tsirkin
  2015-03-29 13:42 ` [PATCH 71/86] fbdev/i740fb: " Michael S. Tsirkin
@ 2015-03-29 13:42 ` Michael S. Tsirkin
  2015-03-29 13:42 ` [PATCH 73/86] fbdev/riva: " Michael S. Tsirkin
  3 siblings, 0 replies; 4+ messages in thread
From: Michael S. Tsirkin @ 2015-03-29 13:42 UTC (permalink / raw)
  To: linux-kernel
  Cc: Antonino Daplas, Jean-Christophe Plagniol-Villard, Tomi Valkeinen,
	linux-fbdev

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/video/fbdev/i810/i810_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/video/fbdev/i810/i810_main.c b/drivers/video/fbdev/i810/i810_main.c
index bb674e4..c4e13bb 100644
--- a/drivers/video/fbdev/i810/i810_main.c
+++ b/drivers/video/fbdev/i810/i810_main.c
@@ -37,7 +37,7 @@
 #include <linux/fb.h>
 #include <linux/init.h>
 #include <linux/pci.h>
-#include <linux/pci_ids.h>
+#include <uapi/linux/pci_ids.h>
 #include <linux/resource.h>
 #include <linux/unistd.h>
 #include <linux/console.h>
-- 
MST


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

* [PATCH 73/86] fbdev/riva: 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:42 ` [PATCH 72/86] fbdev/i810: " Michael S. Tsirkin
@ 2015-03-29 13:42 ` Michael S. Tsirkin
  3 siblings, 0 replies; 4+ messages in thread
From: Michael S. Tsirkin @ 2015-03-29 13:42 UTC (permalink / raw)
  To: linux-kernel
  Cc: Antonino Daplas, Jean-Christophe Plagniol-Villard, Tomi Valkeinen,
	linux-fbdev

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/video/fbdev/riva/nv_driver.c | 2 +-
 drivers/video/fbdev/riva/riva_hw.c   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/video/fbdev/riva/nv_driver.c b/drivers/video/fbdev/riva/nv_driver.c
index f3694cf..f597ee5 100644
--- a/drivers/video/fbdev/riva/nv_driver.c
+++ b/drivers/video/fbdev/riva/nv_driver.c
@@ -36,7 +36,7 @@
 
 #include <linux/delay.h>
 #include <linux/pci.h>
-#include <linux/pci_ids.h>
+#include <uapi/linux/pci_ids.h>
 #include "nv_type.h"
 #include "rivafb.h"
 #include "nvreg.h"
diff --git a/drivers/video/fbdev/riva/riva_hw.c b/drivers/video/fbdev/riva/riva_hw.c
index 8bdf37f..0d399f6 100644
--- a/drivers/video/fbdev/riva/riva_hw.c
+++ b/drivers/video/fbdev/riva/riva_hw.c
@@ -48,7 +48,7 @@
 
 #include <linux/kernel.h>
 #include <linux/pci.h>
-#include <linux/pci_ids.h>
+#include <uapi/linux/pci_ids.h>
 #include "riva_hw.h"
 #include "riva_tbl.h"
 #include "nv_type.h"
-- 
MST


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

end of thread, other threads:[~2015-03-29 13:42 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:42 ` [PATCH 70/86] fbdev/gxt4500: use uapi/linux/pci_ids.h directly Michael S. Tsirkin
2015-03-29 13:42 ` [PATCH 71/86] fbdev/i740fb: " Michael S. Tsirkin
2015-03-29 13:42 ` [PATCH 72/86] fbdev/i810: " Michael S. Tsirkin
2015-03-29 13:42 ` [PATCH 73/86] fbdev/riva: " 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).