xf86drm: correct the OpenBSD DRM_MAJOR define

As far as I can tell no OpenBSD platform ever used 81
for a drm major.  While the value was added to libdrm in 2003
or earlier drm didn't appear in OpenBSD till 2007.

Of the OpenBSD platforms that support drm amd64/macppc/sparc64
use a major of 87, i386 uses 88.

v2: rearrange ifdefs as suggested by Emil.

Signed-off-by: Jonathan Gray <jsg@jsg.id.au>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
main
Jonathan Gray 2015-07-21 03:12:10 +10:00 committed by Emil Velikov
parent 1d3b823650
commit 66c3afb75f
1 changed files with 7 additions and 3 deletions

View File

@ -72,9 +72,13 @@
#define DRM_MAJOR 34 #define DRM_MAJOR 34
#endif #endif
# ifdef __OpenBSD__ #ifdef __OpenBSD__
# define DRM_MAJOR 81 #ifdef __i386__
# endif #define DRM_MAJOR 88
#else
#define DRM_MAJOR 87
#endif
#endif /* __OpenBSD__ */
#ifndef DRM_MAJOR #ifndef DRM_MAJOR
#define DRM_MAJOR 226 /* Linux */ #define DRM_MAJOR 226 /* Linux */