diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-03-28 17:34:39 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-04-28 12:14:27 -0400 |
commit | bb09a954b64c61b691c095e0a20708265b5bc2bc (patch) | |
tree | 2f048790608989d756c60c825db61e2e38287cbd /arch/mips/au1000/common/power.c | |
parent | f2ce89f30ede4cb32fa8f9aaec884087069c81ba (diff) |
[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/au1000/common/power.c')
-rw-r--r-- | arch/mips/au1000/common/power.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/au1000/common/power.c b/arch/mips/au1000/common/power.c index 54047d69b820..ca4b3dea3c92 100644 --- a/arch/mips/au1000/common/power.c +++ b/arch/mips/au1000/common/power.c | |||
@@ -47,7 +47,7 @@ | |||
47 | 47 | ||
48 | #define DEBUG 1 | 48 | #define DEBUG 1 |
49 | #ifdef DEBUG | 49 | #ifdef DEBUG |
50 | # define DPRINTK(fmt, args...) printk("%s: " fmt, __FUNCTION__ , ## args) | 50 | # define DPRINTK(fmt, args...) printk("%s: " fmt, __func__, ## args) |
51 | #else | 51 | #else |
52 | # define DPRINTK(fmt, args...) | 52 | # define DPRINTK(fmt, args...) |
53 | #endif | 53 | #endif |