[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1364883011-23256-1-git-send-email-victoredwardocallaghan@gmail.com>
Date: Tue, 2 Apr 2013 17:10:11 +1100
From: Edward O'Callaghan <victoredwardocallaghan@...il.com>
To: linux-kernel@...r.kernel.org
Cc: Edward O'Callaghan <victoredwardocallaghan@...il.com>
Subject: [PATCH] Build fix for ARM. The UAPI changes split kernel API and userspace API content onto two separate header files and assumed a full linux build. This trips up embedded builds.
Signed-off-by: Edward O'Callaghan <victoredwardocallaghan@...il.com>
---
include/uapi/drm/drm.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/uapi/drm/drm.h b/include/uapi/drm/drm.h
index 8d1e2bb..73a99e4 100644
--- a/include/uapi/drm/drm.h
+++ b/include/uapi/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.8.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists