net: convert remaining non-symbolic return values in ndo_start_xmit() functions
[deliverable/linux.git] / net / atm / mpc.c
index e5bf11453a18b60b7b30ac2a4f3aea91ff60e978..1ac4b94bf6266bcf036e663d113933aecd83a6a0 100644 (file)
@@ -554,7 +554,7 @@ static int mpc_send_packet(struct sk_buff *skb, struct net_device *dev)
        while (i < mpc->number_of_mps_macs) {
                if (!compare_ether_addr(eth->h_dest, (mpc->mps_macs + i*ETH_ALEN)))
                        if ( send_via_shortcut(skb, mpc) == 0 )           /* try shortcut */
-                               return 0;                                 /* success!     */
+                               return NETDEV_TX_OK;                      /* success!     */
                i++;
        }
 
This page took 0.024282 seconds and 5 git commands to generate.