kernel: replace remaining __FUNCTION__ occurrences
__FUNCTION__ is gcc-specific, use __func__ Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Cc: Ingo Molnar <mingo@elte.hu> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
d40cee245f
commit
af1f16d08f
@@ -247,7 +247,7 @@ static void run_workqueue(struct cpu_workqueue_struct *cwq)
|
||||
if (cwq->run_depth > 3) {
|
||||
/* morton gets to eat his hat */
|
||||
printk("%s: recursion depth exceeded: %d\n",
|
||||
__FUNCTION__, cwq->run_depth);
|
||||
__func__, cwq->run_depth);
|
||||
dump_stack();
|
||||
}
|
||||
while (!list_empty(&cwq->worklist)) {
|
||||
|
Reference in New Issue
Block a user