aboutsummaryrefslogtreecommitdiffstats
path: root/include/uapi/drm/drm.h
diff options
context:
space:
mode:
authorJames Clarke <jrtc27@jrtc27.com>2019-01-15 15:04:18 +0000
committerEric Anholt <eric@anholt.net>2019-05-16 09:25:15 -0700
commit75b3f1cb50bdbdc7fd557ca3ed63b3eb87c2bab3 (patch)
tree0b4ed4f02815339f1ee2d817fc5946a6b178cca6 /include/uapi/drm/drm.h
parentdrm/v3d: Fix and extend MMU error handling. (diff)
downloadlinux-dev-75b3f1cb50bdbdc7fd557ca3ed63b3eb87c2bab3.tar.xz
linux-dev-75b3f1cb50bdbdc7fd557ca3ed63b3eb87c2bab3.zip
drm: Fix drm.h uapi header for GNU/kFreeBSD
Like GNU/Linux, GNU/kFreeBSD's sys/types.h does not define the uintX_t types, which differs from the BSDs' headers. Thus we should include stdint.h to ensure we have all the required integer types. Signed-off-by: James Clarke <jrtc27@jrtc27.com> Signed-off-by: Eric Anholt <eric@anholt.net> Link: https://patchwork.freedesktop.org/patch/msgid/20190115150418.68080-1-jrtc27@jrtc27.com Reviewed-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'include/uapi/drm/drm.h')
-rw-r--r--include/uapi/drm/drm.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/uapi/drm/drm.h b/include/uapi/drm/drm.h
index 661d73f9a919..8a5b2f8f8eb9 100644
--- a/include/uapi/drm/drm.h
+++ b/include/uapi/drm/drm.h
@@ -50,6 +50,7 @@ typedef unsigned int drm_handle_t;
#else /* One of the BSDs */
+#include <stdint.h>
#include <sys/ioccom.h>
#include <sys/types.h>
typedef int8_t __s8;