m68k: replace remaining __FUNCTION__ occurrences

__FUNCTION__ is gcc-specific, use __func__

Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Harvey Harrison
2008-04-28 02:13:49 -07:00
committed by Linus Torvalds
parent 6feef6e5f2
commit f85e7cdc3f
3 changed files with 8 additions and 8 deletions

View File

@ -190,7 +190,7 @@ void oss_irq_enable(int irq) {
break;
#ifdef DEBUG_IRQUSE
default:
printk("%s unknown irq %d\n",__FUNCTION__, irq);
printk("%s unknown irq %d\n", __func__, irq);
break;
#endif
}
@ -230,7 +230,7 @@ void oss_irq_disable(int irq) {
break;
#ifdef DEBUG_IRQUSE
default:
printk("%s unknown irq %d\n", __FUNCTION__, irq);
printk("%s unknown irq %d\n", __func__, irq);
break;
#endif
}