diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-04-28 02:16:17 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 08:58:45 -0700 |
commit | 9746077a71d01b8d86f5e471a3a2c8f1fa91ef94 (patch) | |
tree | b6a4b12949b29144ab2092bb5ccac15971a071e4 /fs/ufs/ufs.h | |
parent | 3c5afae2bac974fe2c15cd9439f921526b3ea2d7 (diff) | |
download | linux-9746077a71d01b8d86f5e471a3a2c8f1fa91ef94.tar.gz linux-9746077a71d01b8d86f5e471a3a2c8f1fa91ef94.tar.bz2 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 |