diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-03-29 00:34:39 +0300 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-04-28 20:14:27 +0400 |
commit | bb09a954b64c61b691c095e0a20708265b5bc2bc (patch) | |
tree | 2f048790608989d756c60c825db61e2e38287cbd /arch/mips/sgi-ip32 | |
parent | f2ce89f30ede4cb32fa8f9aaec884087069c81ba (diff) | |
download | linux-bb09a954b64c61b691c095e0a20708265b5bc2bc.tar.xz |
[MIPS] 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: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/sgi-ip32')
-rw-r--r-- | arch/mips/sgi-ip32/ip32-reset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/sgi-ip32/ip32-reset.c b/arch/mips/sgi-ip32/ip32-reset.c index 624bbdbff2a8..b6cab089561e 100644 --- a/arch/mips/sgi-ip32/ip32-reset.c +++ b/arch/mips/sgi-ip32/ip32-reset.c @@ -142,7 +142,7 @@ static irqreturn_t ip32_rtc_int(int irq, void *dev_id) reg_c = CMOS_READ(RTC_INTR_FLAGS); if (!(reg_c & RTC_IRQF)) { printk(KERN_WARNING - "%s: RTC IRQ without RTC_IRQF\n", __FUNCTION__); + "%s: RTC IRQ without RTC_IRQF\n", __func__); } /* Wait until interrupt goes away */ disable_irq(MACEISA_RTC_IRQ); |