diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-03-05 23:47:47 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-03-05 23:47:47 -0500 |
commit | 0dc47877a3de00ceadea0005189656ae8dc52669 (patch) | |
tree | 7440a87385fe318cb42f0ae161be195f5e967d82 /net/ipv4/udplite_ipv4.c | |
parent | 6387c4bed539539b05fa773cf2ff26529dc3074c (diff) |
net: replace remaining __FUNCTION__ occurrences
__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 'net/ipv4/udplite_ipv4.c')
-rw-r--r-- | net/ipv4/udplite_ipv4.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/udplite_ipv4.c b/net/ipv4/udplite_ipv4.c index 001b881ca36f..d49c6d68c8a9 100644 --- a/net/ipv4/udplite_ipv4.c +++ b/net/ipv4/udplite_ipv4.c | |||
@@ -106,14 +106,14 @@ void __init udplite4_register(void) | |||
106 | 106 | ||
107 | #ifdef CONFIG_PROC_FS | 107 | #ifdef CONFIG_PROC_FS |
108 | if (udp_proc_register(&udplite4_seq_afinfo)) /* udplite4_proc_init() */ | 108 | if (udp_proc_register(&udplite4_seq_afinfo)) /* udplite4_proc_init() */ |
109 | printk(KERN_ERR "%s: Cannot register /proc!\n", __FUNCTION__); | 109 | printk(KERN_ERR "%s: Cannot register /proc!\n", __func__); |
110 | #endif | 110 | #endif |
111 | return; | 111 | return; |
112 | 112 | ||
113 | out_unregister_proto: | 113 | out_unregister_proto: |
114 | proto_unregister(&udplite_prot); | 114 | proto_unregister(&udplite_prot); |
115 | out_register_err: | 115 | out_register_err: |
116 | printk(KERN_CRIT "%s: Cannot add UDP-Lite protocol.\n", __FUNCTION__); | 116 | printk(KERN_CRIT "%s: Cannot add UDP-Lite protocol.\n", __func__); |
117 | } | 117 | } |
118 | 118 | ||
119 | EXPORT_SYMBOL(udplite_hash); | 119 | EXPORT_SYMBOL(udplite_hash); |