From: Dave Airlie Date: Thu, 7 Jul 2005 11:09:14 +0000 (+1000) Subject: drm: wrap config.h include in a ifdef KERNEL X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=850eb83a6a21b086624b227653ce90ad927ba423;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git drm: wrap config.h include in a ifdef KERNEL This file can be included from userspace so wrap the config.h include. Signed-off-by: David Airlie --- diff --git a/drivers/char/drm/drm.h b/drivers/char/drm/drm.h index 587305282ea8..e8371dd87fbc 100644 --- a/drivers/char/drm/drm.h +++ b/drivers/char/drm/drm.h @@ -38,7 +38,9 @@ #define _DRM_H_ #if defined(__linux__) +#if defined(__KERNEL__) #include +#endif #include /* For _IO* macros */ #define DRM_IOCTL_NR(n) _IOC_NR(n) #define DRM_IOC_VOID _IOC_NONE