can: gw: can_can_gw_rcv(): remove return at end of void function

This patch remove the return at the end of the void function
can_can_gw_rcv().

Signed-off-by: Marc Kleine-Budde <[email protected]>
diff --git a/net/can/gw.c b/net/can/gw.c
index ff7366e..9b2efba 100644
--- a/net/can/gw.c
+++ b/net/can/gw.c
@@ -447,7 +447,6 @@ static void can_can_gw_rcv(struct sk_buff *skb, void *data)
 	/* delete frame due to misconfiguration */
 	gwj->deleted_frames++;
 	kfree_skb(nskb);
-	return;
 }
 
 static inline int cgw_register_filter(struct net *net, struct cgw_job *gwj)