aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/sched.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h
index 4a7e4d333a27..56fa25a5b1eb 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -2074,7 +2074,7 @@ extern struct task_struct *idle_task(int cpu);
2074 * is_idle_task - is the specified task an idle task? 2074 * is_idle_task - is the specified task an idle task?
2075 * @tsk: the task in question. 2075 * @tsk: the task in question.
2076 */ 2076 */
2077static inline bool is_idle_task(struct task_struct *p) 2077static inline bool is_idle_task(const struct task_struct *p)
2078{ 2078{
2079 return p->pid == 0; 2079 return p->pid == 0;
2080} 2080}