Comment 2 for bug 868550

Revision history for this message
Alexander Sack (asac) wrote :

here the patch that paul did for 3.0 and that andy applied now to workaround:

Date: Fri, 3 Jun 2011 18:04:45 +0300
From: Paul Sokolovsky <email address hidden>
To: linaro-dev <email address hidden>, <email address hidden>,
Alexander Sack <email address hidden> Subject: [PATCH] drm.h: Fix DRM
compilation with bare-metal toolchain.

An ifdef in drm.h expects to be compiled with full-fledged Linux
toolchain, but it's common to compile kernel with just bare-metal
toolchain which doesn't define __linux__. So, also add __KERNEL__
check.

Signed-off-by: Paul Sokolovsky <email address hidden>
---
 include/drm/drm.h | 2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/drm/drm.h b/include/drm/drm.h
index 4be33b4..45435e3 100644
--- a/include/drm/drm.h
+++ b/include/drm/drm.h
@@ -36,7 +36,7 @@
 #ifndef _DRM_H_
 #define _DRM_H_

-#if defined(__linux__)
+#if defined(__KERNEL__) || defined(__linux__)

 #include <linux/types.h>
 #include <asm/ioctl.h>
--
1.7.1