diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-10-16 01:01:25 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-16 14:21:30 -0400 |
commit | 80a914dc05683ecfc98f9e1887fd6564846ffbec (patch) | |
tree | 2120b4007bc9488eebd98a4d40b00221d17ecb2b /mm/bootmem.c | |
parent | d5c003b4d1690e666dbab02bc8e705947baa848c (diff) |
misc: replace __FUNCTION__ with __func__
__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: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/bootmem.c')
-rw-r--r-- | mm/bootmem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/bootmem.c b/mm/bootmem.c index ad8eec6e44a8..ac5a891f142a 100644 --- a/mm/bootmem.c +++ b/mm/bootmem.c | |||
@@ -48,7 +48,7 @@ early_param("bootmem_debug", bootmem_debug_setup); | |||
48 | if (unlikely(bootmem_debug)) \ | 48 | if (unlikely(bootmem_debug)) \ |
49 | printk(KERN_INFO \ | 49 | printk(KERN_INFO \ |
50 | "bootmem::%s " fmt, \ | 50 | "bootmem::%s " fmt, \ |
51 | __FUNCTION__, ## args); \ | 51 | __func__, ## args); \ |
52 | }) | 52 | }) |
53 | 53 | ||
54 | static unsigned long __init bootmap_bytes(unsigned long pages) | 54 | static unsigned long __init bootmap_bytes(unsigned long pages) |