mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
e48b1b452f
__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>
13 lines
192 B
C
13 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;
|
|
}
|