summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Brace <kevinbrace@gmx.com>2019-03-16 10:56:02 -0700
committerKevin Brace <kevinbrace@gmx.com>2019-03-16 10:56:02 -0700
commitc3c7d2f8acdfacd4b0fa0dcefebbf64cc9ebe56b (patch)
treef746620848dc4812cb27bca07deca3af4ea6bc68
parent0251aebbd1b3e97a22f90287688cd9d828c6ea61 (diff)
drm/openchrome: Use <drm/> path for DRM header file inclusion
Signed-off-by: Kevin Brace <kevinbrace@gmx.com>
-rw-r--r--drivers/gpu/drm/openchrome/openchrome_clocks.c2
-rw-r--r--drivers/gpu/drm/openchrome/openchrome_crtc.c6
-rw-r--r--drivers/gpu/drm/openchrome/openchrome_display.c6
-rw-r--r--drivers/gpu/drm/openchrome/openchrome_display.h10
-rw-r--r--drivers/gpu/drm/openchrome/openchrome_fb.c6
-rw-r--r--drivers/gpu/drm/openchrome/openchrome_gem.c2
-rw-r--r--drivers/gpu/drm/openchrome/openchrome_ioc32.c2
7 files changed, 17 insertions, 17 deletions
diff --git a/drivers/gpu/drm/openchrome/openchrome_clocks.c b/drivers/gpu/drm/openchrome/openchrome_clocks.c
index 7ff44400ad3d..1e783e0889bd 100644
--- a/drivers/gpu/drm/openchrome/openchrome_clocks.c
+++ b/drivers/gpu/drm/openchrome/openchrome_clocks.c
@@ -19,7 +19,7 @@
* for more details.
*/
-#include "drmP.h"
+#include <drm/drmP.h>
#include "openchrome_drv.h"
diff --git a/drivers/gpu/drm/openchrome/openchrome_crtc.c b/drivers/gpu/drm/openchrome/openchrome_crtc.c
index 3bfbf3a2d6c6..078575282af0 100644
--- a/drivers/gpu/drm/openchrome/openchrome_crtc.c
+++ b/drivers/gpu/drm/openchrome/openchrome_crtc.c
@@ -22,9 +22,9 @@
* James Simmons <jsimmons@infradead.org>
*/
#include <drm/drm_mode.h>
-#include "drmP.h"
-#include "drm_crtc.h"
-#include "drm_crtc_helper.h"
+#include <drm/drmP.h>
+#include <drm/drm_crtc.h>
+#include <drm/drm_crtc_helper.h>
#include "openchrome_drv.h"
#include "openchrome_disp_reg.h"
diff --git a/drivers/gpu/drm/openchrome/openchrome_display.c b/drivers/gpu/drm/openchrome/openchrome_display.c
index 07f208ed70bd..313788a03f79 100644
--- a/drivers/gpu/drm/openchrome/openchrome_display.c
+++ b/drivers/gpu/drm/openchrome/openchrome_display.c
@@ -22,9 +22,9 @@
* James Simmons <jsimmons@infradead.org>
*/
-#include "drmP.h"
-#include "drm_crtc.h"
-#include "drm_crtc_helper.h"
+#include <drm/drmP.h>
+#include <drm/drm_crtc.h>
+#include <drm/drm_crtc_helper.h>
#include "openchrome_drv.h"
diff --git a/drivers/gpu/drm/openchrome/openchrome_display.h b/drivers/gpu/drm/openchrome/openchrome_display.h
index e5be8e61e2bc..db34df3dd10d 100644
--- a/drivers/gpu/drm/openchrome/openchrome_display.h
+++ b/drivers/gpu/drm/openchrome/openchrome_display.h
@@ -25,11 +25,11 @@
#include <video/vga.h>
-#include "drm_edid.h"
-#include "drm_crtc.h"
-#include "drm_crtc_helper.h"
-#include "drm_plane_helper.h"
-#include "drm_fb_helper.h"
+#include <drm/drm_edid.h>
+#include <drm/drm_crtc.h>
+#include <drm/drm_crtc_helper.h>
+#include <drm/drm_plane_helper.h>
+#include <drm/drm_fb_helper.h>
#include "openchrome_crtc_hw.h"
diff --git a/drivers/gpu/drm/openchrome/openchrome_fb.c b/drivers/gpu/drm/openchrome/openchrome_fb.c
index 0ad043ead05a..7c5432c04243 100644
--- a/drivers/gpu/drm/openchrome/openchrome_fb.c
+++ b/drivers/gpu/drm/openchrome/openchrome_fb.c
@@ -20,9 +20,9 @@
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
-#include "drmP.h"
-#include "drm_fb_helper.h"
-#include "drm_crtc_helper.h"
+#include <drm/drmP.h>
+#include <drm/drm_fb_helper.h>
+#include <drm/drm_crtc_helper.h>
#include "openchrome_drv.h"
diff --git a/drivers/gpu/drm/openchrome/openchrome_gem.c b/drivers/gpu/drm/openchrome/openchrome_gem.c
index f152954213d5..22203c031ed6 100644
--- a/drivers/gpu/drm/openchrome/openchrome_gem.c
+++ b/drivers/gpu/drm/openchrome/openchrome_gem.c
@@ -20,7 +20,7 @@
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
-#include "drmP.h"
+#include <drm/drmP.h>
#include "openchrome_drv.h"
diff --git a/drivers/gpu/drm/openchrome/openchrome_ioc32.c b/drivers/gpu/drm/openchrome/openchrome_ioc32.c
index 5a54f3a51460..4675249118c0 100644
--- a/drivers/gpu/drm/openchrome/openchrome_ioc32.c
+++ b/drivers/gpu/drm/openchrome/openchrome_ioc32.c
@@ -25,7 +25,7 @@
* Authors: Thomas Hellström <thomas-at-tungstengraphics-dot-com>
*/
-#include "drmP.h"
+#include <drm/drmP.h>
#include "openchrome_drv.h"