diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-04-28 11:16:17 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 17:58:45 +0200 |
commit | 9746077a71d01b8d86f5e471a3a2c8f1fa91ef94 (patch) | |
tree | b6a4b12949b29144ab2092bb5ccac15971a071e4 /fs/ufs/ufs.h | |
parent | ufs: [bl]e*_add_cpu conversion (diff) | |
download | linux-9746077a71d01b8d86f5e471a3a2c8f1fa91ef94.tar.xz linux-9746077a71d01b8d86f5e471a3a2c8f1fa91ef94.zip |
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 { #ifdef CONFIG_UFS_DEBUG # define UFSD(f, a...) { \ printk ("UFSD (%s, %d): %s:", \ - __FILE__, __LINE__, __FUNCTION__); \ + __FILE__, __LINE__, __func__); \ printk (f, ## a); \ } #else |