__FUNCTION__ is gcc-specific, use __func__ Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Paul Mackerras <paulus@samba.org>
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			192 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			192 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
#include <linux/types.h>
 | 
						|
#include <linux/errno.h>
 | 
						|
#include <asm/uaccess.h>
 | 
						|
 | 
						|
int
 | 
						|
fres(void *frD, void *frB)
 | 
						|
{
 | 
						|
#ifdef DEBUG
 | 
						|
	printk("%s: %p %p\n", __func__, frD, frB);
 | 
						|
#endif
 | 
						|
	return -ENOSYS;
 | 
						|
}
 |