From: Marc Kleine-Budde Date: Tue, 13 Aug 2019 09:25:33 +0000 (+0200) Subject: can: af_can: add missing identifiers to struct receiver::func X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=97c334935100e762feb4f083291bb2fc006de7df;p=linux.git can: af_can: add missing identifiers to struct receiver::func This patch adds the missing identifiers to the struct receiver::func declaration. Signed-off-by: Marc Kleine-Budde --- diff --git a/net/can/af_can.h b/net/can/af_can.h index 41a45e3bc4a47..9cdb790836236 100644 --- a/net/can/af_can.h +++ b/net/can/af_can.h @@ -53,7 +53,7 @@ struct receiver { canid_t can_id; canid_t mask; unsigned long matches; - void (*func)(struct sk_buff *, void *); + void (*func)(struct sk_buff *skb, void *data); void *data; char *ident; struct sock *sk;