diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-03-04 15:23:47 -0800 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-03-06 11:18:22 +0900 |
commit | 866e6b9e5019e210d96ced31fbae531ed756e486 (patch) | |
tree | 2750282fb2fddcfa609ac8579afdb776177cff90 /arch/sh/lib64 | |
parent | ad0caae0ded1af2a0a41f93356587e1c24d76725 (diff) |
sh: replace remaining __FUNCTION__ occurrences
__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: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/lib64')
-rw-r--r-- | arch/sh/lib64/c-checksum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/lib64/c-checksum.c b/arch/sh/lib64/c-checksum.c index 5dfbd8b5e558..5c284e0cff9c 100644 --- a/arch/sh/lib64/c-checksum.c +++ b/arch/sh/lib64/c-checksum.c @@ -207,7 +207,7 @@ __wsum csum_tcpudp_nofold(__be32 saddr, __be32 daddr, result = (result & 0xffffffff) + (result >> 32); pr_debug("%s saddr %x daddr %x len %x proto %x sum %x result %08Lx\n", - __FUNCTION__, saddr, daddr, len, proto, sum, result); + __func__, saddr, daddr, len, proto, sum, result); return (__wsum)result; } |