diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-03-03 11:42:17 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-03-03 11:42:17 -0800 |
commit | 9a4a668240e2f9564d12347c50c3d9c5f1686a85 (patch) | |
tree | 96a3fc7fea0e5d0565e4253f8fb830dbc4a45b98 /arch/sparc64/solaris/conv.h | |
parent | 74074dec4f365e1b042ad47f75854f06bd771455 (diff) | |
download | talos-op-linux-9a4a668240e2f9564d12347c50c3d9c5f1686a85.tar.gz talos-op-linux-9a4a668240e2f9564d12347c50c3d9c5f1686a85.zip |
sparc64: replace remaining __FUNCTION__ occurances
__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc64/solaris/conv.h')
-rw-r--r-- | arch/sparc64/solaris/conv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc64/solaris/conv.h b/arch/sparc64/solaris/conv.h index 5faf59a9de39..50e58232cf2b 100644 --- a/arch/sparc64/solaris/conv.h +++ b/arch/sparc64/solaris/conv.h @@ -28,7 +28,7 @@ extern unsigned sunos_sys_table[]; #define SUNOS(x) ((long)sunos_sys_table[x]) #ifdef DEBUG_SOLARIS -#define SOLD(s) printk("%s,%d,%s(): %s\n",__FILE__,__LINE__,__FUNCTION__,(s)) +#define SOLD(s) printk("%s,%d,%s(): %s\n",__FILE__,__LINE__,__func__,(s)) #define SOLDD(s) printk("solaris: "); printk s #else #define SOLD(s) |