Remove unnecessary return at end of a void function. Part of the eudyptula challenge: http://eudyptula-challenge.org/
Signed-off-by: Mostyn Bramley-Moore <[email protected]> --- drivers/staging/netlogic/xlr_net.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/staging/netlogic/xlr_net.c b/drivers/staging/netlogic/xlr_net.c index e320d6b..9bf407d 100644 --- a/drivers/staging/netlogic/xlr_net.c +++ b/drivers/staging/netlogic/xlr_net.c @@ -185,7 +185,6 @@ static void xlr_net_fmn_handler(int bkt, int src_stnid, int size, if (skb_new) send_to_rfr_fifo(priv, skb_new->data); } - return; } /* Ethtool operation */ -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

