diff options
| author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-10-15 22:01:24 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-16 11:21:30 -0700 | 
| commit | d5c003b4d1690e666dbab02bc8e705947baa848c (patch) | |
| tree | 868edee78b635698429173a95ac4215b932f0155 /include/linux/jbd.h | |
| parent | 8e9c7716c138fa82d919bfe1115ec8c938e90918 (diff) | |
| download | olio-linux-3.10-d5c003b4d1690e666dbab02bc8e705947baa848c.tar.xz olio-linux-3.10-d5c003b4d1690e666dbab02bc8e705947baa848c.zip  | |
include: 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 'include/linux/jbd.h')
| -rw-r--r-- | include/linux/jbd.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/jbd.h b/include/linux/jbd.h index 07a9b52a265..7ebbcb1c9ba 100644 --- a/include/linux/jbd.h +++ b/include/linux/jbd.h @@ -61,7 +61,7 @@ extern u8 journal_enable_debug;  	do {								\  		if ((n) <= journal_enable_debug) {			\  			printk (KERN_DEBUG "(%s, %d): %s: ",		\ -				__FILE__, __LINE__, __FUNCTION__);	\ +				__FILE__, __LINE__, __func__);	\  			printk (f, ## a);				\  		}							\  	} while (0) @@ -984,7 +984,7 @@ extern int	cleanup_journal_tail(journal_t *);  #define jbd_ENOSYS() \  do {								           \ -	printk (KERN_ERR "JBD unimplemented function %s\n", __FUNCTION__); \ +	printk (KERN_ERR "JBD unimplemented function %s\n", __func__); \  	current->state = TASK_UNINTERRUPTIBLE;			           \  	schedule();						           \  } while (1)  |