summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDhoat Harpal <hdhoat@codeaurora.org>2016-07-15 19:31:39 +0530
committerDhoat Harpal <hdhoat@codeaurora.org>2016-07-21 18:13:40 +0530
commited6db47f7e83c8827a347fa00ba557017f2ec14d (patch)
treea39716f560f5f53a2f36d9206ff42f45607afb81
parent7eb20e5733b82473d2d1e9e59aa42989e73f3c70 (diff)
soc: qcom: glink: Included sched.h to avoid build error
32 bit Compilation is failed due to undeclared usage of TASK_UNINTERRUPTIBLE. Include sched.h header file for the definition of TASK_UNINTERRUPTIBLE. CRs-Fixed: 1042813 Change-Id: I947b8d08f61624b914bd82caf4276364b9833cef Signed-off-by: Dhoat Harpal <hdhoat@codeaurora.org>
-rw-r--r--drivers/soc/qcom/glink_private.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/soc/qcom/glink_private.h b/drivers/soc/qcom/glink_private.h
index 2f064e546f48..cdd6988418f7 100644
--- a/drivers/soc/qcom/glink_private.h
+++ b/drivers/soc/qcom/glink_private.h
@@ -19,6 +19,7 @@
#include <linux/kernel.h>
#include <linux/kref.h>
#include <linux/ratelimit.h>
+#include <linux/sched.h>
#include <linux/seq_file.h>
#include <linux/spinlock.h>
#include <linux/types.h>