Module Name: src
Committed By: riastradh
Date: Mon Aug 27 06:42:41 UTC 2018
Modified Files:
src/sys/external/bsd/drm2/dist/include/drm: drmP.h
Log Message:
Include drm_os_* earlier.
To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sys/external/bsd/drm2/dist/include/drm/drmP.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/external/bsd/drm2/dist/include/drm/drmP.h
diff -u src/sys/external/bsd/drm2/dist/include/drm/drmP.h:1.17 src/sys/external/bsd/drm2/dist/include/drm/drmP.h:1.18
--- src/sys/external/bsd/drm2/dist/include/drm/drmP.h:1.17 Mon Aug 27 06:42:00 2018
+++ src/sys/external/bsd/drm2/dist/include/drm/drmP.h Mon Aug 27 06:42:41 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: drmP.h,v 1.17 2018/08/27 06:42:00 riastradh Exp $ */
+/* $NetBSD: drmP.h,v 1.18 2018/08/27 06:42:41 riastradh Exp $ */
/*
* Internal Header for the Direct Rendering Manager
@@ -72,6 +72,12 @@
#include <uapi/drm/drm.h>
#include <uapi/drm/drm_mode.h>
+#ifdef __NetBSD__
+#include <drm/drm_os_netbsd.h>
+#else
+#include <drm/drm_os_linux.h>
+#endif
+
#include <drm/drm.h>
#include <drm/drm_agpsupport.h>
#include <drm/drm_crtc.h>
@@ -79,11 +85,6 @@
#include <drm/drm_hashtab.h>
#include <drm/drm_mem_util.h>
#include <drm/drm_mm.h>
-#ifdef __NetBSD__
-#include <drm/drm_os_netbsd.h>
-#else
-#include <drm/drm_os_linux.h>
-#endif
#include <drm/drm_sarea.h>
#include <drm/drm_vma_manager.h>