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-Tag: for-linus-2019-09-27~91^2~229^2~19 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=97c334935100e762feb4f083291bb2fc006de7df;p=linux-block.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 41a45e3bc4a4..9cdb79083623 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;