Skip to content

Commit

Permalink
xtensa: replace remaining __FUNCTION__ occurrences
Browse files Browse the repository at this point in the history
__FUNCTION__ is gcc-specific, use __func__

Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Chris Zankel <chris@zankel.net>
  • Loading branch information
Harvey Harrison authored and Chris Zankel committed Oct 15, 2008
1 parent ef9c2f0 commit 1b532c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/xtensa/kernel/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ asmlinkage void do_IRQ(int irq, struct pt_regs *regs)

if (irq >= NR_IRQS) {
printk(KERN_EMERG "%s: cannot handle IRQ %d\n",
__FUNCTION__, irq);
__func__, irq);
}

irq_enter();
Expand Down

0 comments on commit 1b532c6

Please sign in to comment.