drm: wrap config.h include in a ifdef KERNEL
authorDave Airlie <airlied@starflyer.(none)>
Thu, 7 Jul 2005 11:09:14 +0000 (21:09 +1000)
committerDave Airlie <airlied@linux.ie>
Thu, 7 Jul 2005 11:09:14 +0000 (21:09 +1000)
This file can be included from userspace so wrap the config.h include.

Signed-off-by: David Airlie <airlied@linux.ie>
drivers/char/drm/drm.h

index 5873052..e8371dd 100644 (file)
@@ -38,7 +38,9 @@
 #define _DRM_H_
 
 #if defined(__linux__)
+#if defined(__KERNEL__)
 #include <linux/config.h>
+#endif
 #include <asm/ioctl.h>         /* For _IO* macros */
 #define DRM_IOCTL_NR(n)                _IOC_NR(n)
 #define DRM_IOC_VOID           _IOC_NONE