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>
This commit is contained in:
committed by
David S. Miller
parent
6387c4bed5
commit
0dc47877a3
+2
-2
@@ -154,7 +154,7 @@ int llc_rcv(struct sk_buff *skb, struct net_device *dev,
|
||||
* receives, do not try to analyse it.
|
||||
*/
|
||||
if (unlikely(skb->pkt_type == PACKET_OTHERHOST)) {
|
||||
dprintk("%s: PACKET_OTHERHOST\n", __FUNCTION__);
|
||||
dprintk("%s: PACKET_OTHERHOST\n", __func__);
|
||||
goto drop;
|
||||
}
|
||||
skb = skb_share_check(skb, GFP_ATOMIC);
|
||||
@@ -167,7 +167,7 @@ int llc_rcv(struct sk_buff *skb, struct net_device *dev,
|
||||
goto handle_station;
|
||||
sap = llc_sap_find(pdu->dsap);
|
||||
if (unlikely(!sap)) {/* unknown SAP */
|
||||
dprintk("%s: llc_sap_find(%02X) failed!\n", __FUNCTION__,
|
||||
dprintk("%s: llc_sap_find(%02X) failed!\n", __func__,
|
||||
pdu->dsap);
|
||||
goto drop;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user