xtensa: replace remaining __FUNCTION__ occurrences
__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>
This commit is contained in:
parent
ef9c2f04db
commit
1b532c6ced
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ asmlinkage void do_IRQ(int irq, struct pt_regs *regs)
|
||||||
|
|
||||||
if (irq >= NR_IRQS) {
|
if (irq >= NR_IRQS) {
|
||||||
printk(KERN_EMERG "%s: cannot handle IRQ %d\n",
|
printk(KERN_EMERG "%s: cannot handle IRQ %d\n",
|
||||||
__FUNCTION__, irq);
|
__func__, irq);
|
||||||
}
|
}
|
||||||
|
|
||||||
irq_enter();
|
irq_enter();
|
||||||
|
|
Loading…
Add table
Reference in a new issue