diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2012-01-21 11:03:13 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-23 08:44:54 -0800 |
commit | fa757281a08799fd6c0f7ec6f111d1cd66afc97b (patch) | |
tree | 664f8728e55e3d37ca8eb3c6c9087d2da9860463 /include | |
parent | 2f6c76aa5f0fb53059730c628ac59ef62a14ed7a (diff) | |
download | linux-3.10-fa757281a08799fd6c0f7ec6f111d1cd66afc97b.tar.gz linux-3.10-fa757281a08799fd6c0f7ec6f111d1cd66afc97b.tar.bz2 linux-3.10-fa757281a08799fd6c0f7ec6f111d1cd66afc97b.zip |
kernel-doc: fix kernel-doc warnings in sched
Fix new kernel-doc notation warnings:
Warning(include/linux/sched.h:2094): No description found for parameter 'p'
Warning(include/linux/sched.h:2094): Excess function parameter 'tsk' description in 'is_idle_task'
Warning(kernel/sched/cpupri.c:139): No description found for parameter 'newpri'
Warning(kernel/sched/cpupri.c:139): Excess function parameter 'pri' description in 'cpupri_set'
Warning(kernel/sched/cpupri.c:208): Excess function parameter 'bootmem' description in 'cpupri_init'
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/sched.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index 4032ec1cf83..513f5245987 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -2088,7 +2088,7 @@ extern int sched_setscheduler_nocheck(struct task_struct *, int, extern struct task_struct *idle_task(int cpu); /** * is_idle_task - is the specified task an idle task? - * @tsk: the task in question. + * @p: the task in question. */ static inline bool is_idle_task(struct task_struct *p) { |