From: David Herrmann Date: Fri, 29 Aug 2014 10:12:34 +0000 (+0200) Subject: drm: drop __KERNEL__ protection in drmP.h X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=32abc552bc869edcfa7b1c6ee365e0b58a134ec6;p=linux-beck.git drm: drop __KERNEL__ protection in drmP.h drmP.h is internal to the kernel. No need to keep the __KERNEL__ protection. Signed-off-by: David Herrmann Reviewed-by: Thierry Reding Signed-off-by: Dave Airlie --- diff --git a/include/drm/drmP.h b/include/drm/drmP.h index 31fb30047770..d3504c6ff15e 100644 --- a/include/drm/drmP.h +++ b/include/drm/drmP.h @@ -35,7 +35,6 @@ #ifndef _DRM_P_H_ #define _DRM_P_H_ -#ifdef __KERNEL__ #include #include #include @@ -1544,5 +1543,4 @@ static __inline__ bool drm_can_sleep(void) return true; } -#endif /* __KERNEL__ */ #endif