aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmit Pundir <amit.pundir@linaro.org>2017-04-21 11:02:46 +0530
committerAmit Pundir <amit.pundir@linaro.org>2017-07-17 10:35:21 +0530
commitf7d8b13d26e5a9fdf0ac0faeb5e9de1a3216ad05 (patch)
treec6a78871f58b410df6a5cf139d48c8ae914f1dda
parent872b29b9ecf8e34c71fbf652a2e24707cf4ac263 (diff)
downloadlinaro-android-f7d8b13d26e5a9fdf0ac0faeb5e9de1a3216ad05.tar.gz
ANDROID: fiq_debugger: Include <linux/sched/signal.h>
Upstream commit 2a1f062a4acf ("sched/headers: Move signal wakeup & sigpending methods from <linux/sched.h> into <linux/sched/signal.h>") moved do_each_thread definitions to <linux/sched/signal.h>. Hence include that instead of <linux/sched.h>. Signed-off-by: Amit Pundir <amit.pundir@linaro.org>
-rw-r--r--drivers/staging/android/fiq_debugger/fiq_debugger.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/android/fiq_debugger/fiq_debugger.c b/drivers/staging/android/fiq_debugger/fiq_debugger.c
index 675b974b2a6e..8bf54fd1e4ea 100644
--- a/drivers/staging/android/fiq_debugger/fiq_debugger.c
+++ b/drivers/staging/android/fiq_debugger/fiq_debugger.c
@@ -27,7 +27,7 @@
#include <linux/irq.h>
#include <linux/delay.h>
#include <linux/reboot.h>
-#include <linux/sched.h>
+#include <linux/sched/signal.h>
#include <linux/slab.h>
#include <linux/smp.h>
#include <linux/timer.h>