diff options
author | Kristian Høgsberg <krh@bitplanet.net> | 2009-12-02 12:13:48 -0500 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2009-12-04 08:59:28 +1000 |
commit | 1a95916f5465ad6c91398f17924949db7e0b5c36 (patch) | |
tree | e9293ebb277e8cb39dcd57d9c1c07c68a0c8d803 /include/drm/drmP.h | |
parent | 862302ffe422378a5213f558fc5cdf62c37050a9 (diff) | |
download | op-kernel-dev-1a95916f5465ad6c91398f17924949db7e0b5c36.zip op-kernel-dev-1a95916f5465ad6c91398f17924949db7e0b5c36.tar.gz |
drm: Add compatibility #ifdefs for *BSD
This let's use use the linux drm headers as the canonical source for
libdrm on all platforms.
Signed-off-by: Kristian Høgsberg <krh@bitplanet.net>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'include/drm/drmP.h')
-rw-r--r-- | include/drm/drmP.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/drm/drmP.h b/include/drm/drmP.h index 770772c..db56a6a 100644 --- a/include/drm/drmP.h +++ b/include/drm/drmP.h @@ -289,6 +289,9 @@ typedef int drm_ioctl_t(struct drm_device *dev, void *data, typedef int drm_ioctl_compat_t(struct file *filp, unsigned int cmd, unsigned long arg); +#define DRM_IOCTL_NR(n) _IOC_NR(n) +#define DRM_MAJOR 226 + #define DRM_AUTH 0x1 #define DRM_MASTER 0x2 #define DRM_ROOT_ONLY 0x4 |