diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-04-28 05:16:17 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 11:58:45 -0400 |
commit | 9746077a71d01b8d86f5e471a3a2c8f1fa91ef94 (patch) | |
tree | b6a4b12949b29144ab2092bb5ccac15971a071e4 /fs/ufs/ufs.h | |
parent | 3c5afae2bac974fe2c15cd9439f921526b3ea2d7 (diff) |
ufs: replace remaining __FUNCTION__ occurrences
__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Cc: Jan Engelhardt <jengelh@linux01.gwdg.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/ufs/ufs.h')
-rw-r--r-- | fs/ufs/ufs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ufs/ufs.h b/fs/ufs/ufs.h index fcb9231bb9ed..244a1aaa940e 100644 --- a/fs/ufs/ufs.h +++ b/fs/ufs/ufs.h | |||
@@ -66,7 +66,7 @@ struct ufs_inode_info { | |||
66 | #ifdef CONFIG_UFS_DEBUG | 66 | #ifdef CONFIG_UFS_DEBUG |
67 | # define UFSD(f, a...) { \ | 67 | # define UFSD(f, a...) { \ |
68 | printk ("UFSD (%s, %d): %s:", \ | 68 | printk ("UFSD (%s, %d): %s:", \ |
69 | __FILE__, __LINE__, __FUNCTION__); \ | 69 | __FILE__, __LINE__, __func__); \ |
70 | printk (f, ## a); \ | 70 | printk (f, ## a); \ |
71 | } | 71 | } |
72 | #else | 72 | #else |