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/llc/llc_input.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/llc/llc_input.c')
-rw-r--r-- | net/llc/llc_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/llc/llc_input.c b/net/llc/llc_input.c index c40c9b2a345a..b9143d2a04e1 100644 --- a/net/llc/llc_input.c +++ b/net/llc/llc_input.c | |||
@@ -154,7 +154,7 @@ int llc_rcv(struct sk_buff *skb, struct net_device *dev, | |||
154 | * receives, do not try to analyse it. | 154 | * receives, do not try to analyse it. |
155 | */ | 155 | */ |
156 | if (unlikely(skb->pkt_type == PACKET_OTHERHOST)) { | 156 | if (unlikely(skb->pkt_type == PACKET_OTHERHOST)) { |
157 | dprintk("%s: PACKET_OTHERHOST\n", __FUNCTION__); | 157 | dprintk("%s: PACKET_OTHERHOST\n", __func__); |
158 | goto drop; | 158 | goto drop; |
159 | } | 159 | } |
160 | skb = skb_share_check(skb, GFP_ATOMIC); | 160 | skb = skb_share_check(skb, GFP_ATOMIC); |
@@ -167,7 +167,7 @@ int llc_rcv(struct sk_buff *skb, struct net_device *dev, | |||
167 | goto handle_station; | 167 | goto handle_station; |
168 | sap = llc_sap_find(pdu->dsap); | 168 | sap = llc_sap_find(pdu->dsap); |
169 | if (unlikely(!sap)) {/* unknown SAP */ | 169 | if (unlikely(!sap)) {/* unknown SAP */ |
170 | dprintk("%s: llc_sap_find(%02X) failed!\n", __FUNCTION__, | 170 | dprintk("%s: llc_sap_find(%02X) failed!\n", __func__, |
171 | pdu->dsap); | 171 | pdu->dsap); |
172 | goto drop; | 172 | goto drop; |
173 | } | 173 | } |