diff mbox

econet: use NET_RX_SUCCESS instead of magic number 0 for econet_rcv successful return

Message ID 20090707063558.895a7fb5.lk-netdev@lk-netdev.nosense.org
State Accepted, archived
Delegated to: David Miller
Headers show

Commit Message

Mark Smith July 6, 2009, 9:05 p.m. UTC
Signed-off-by: Mark Smith <markzzzsmith@yahoo.com.au>


--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

David Miller July 7, 2009, 1:09 a.m. UTC | #1
From: Mark Smith <lk-netdev@lk-netdev.nosense.org>
Date: Tue, 7 Jul 2009 06:35:58 +0930

> 
> Signed-off-by: Mark Smith <markzzzsmith@yahoo.com.au>

Applied.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/net/econet/af_econet.c b/net/econet/af_econet.c
index 6f479fa..f734392 100644
--- a/net/econet/af_econet.c
+++ b/net/econet/af_econet.c
@@ -1084,7 +1084,7 @@  static int econet_rcv(struct sk_buff *skb, struct net_device *dev, struct packet
 		skb->protocol = htons(ETH_P_IP);
 		skb_pull(skb, sizeof(struct ec_framehdr));
 		netif_rx(skb);
-		return 0;
+		return NET_RX_SUCCESS;
 	}
 
 	sk = ec_listening_socket(hdr->port, hdr->src_stn, hdr->src_net);
@@ -1095,7 +1095,7 @@  static int econet_rcv(struct sk_buff *skb, struct net_device *dev, struct packet
 			    hdr->port))
 		goto drop;
 
-	return 0;
+	return NET_RX_SUCCESS;
 
 drop:
 	kfree_skb(skb);