mirror of https://gitee.com/openkylin/linux.git
can: kvaser_usb: Send correct context to URB completion
Send expected argument to the URB completion hander: a CAN netdevice instead of the network interface private context `kvaser_usb_net_priv'. This was discovered by having some garbage in the kernel log in place of the netdevice names: can0 and can1. Signed-off-by: Ahmed S. Darwish <ahmed.darwish@valeo.com> Cc: linux-stable <stable@vger.kernel.org> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
This commit is contained in:
parent
ded5006667
commit
3803fa6977
|
@ -587,7 +587,7 @@ static int kvaser_usb_simple_msg_async(struct kvaser_usb_net_priv *priv,
|
||||||
usb_sndbulkpipe(dev->udev,
|
usb_sndbulkpipe(dev->udev,
|
||||||
dev->bulk_out->bEndpointAddress),
|
dev->bulk_out->bEndpointAddress),
|
||||||
buf, msg->len,
|
buf, msg->len,
|
||||||
kvaser_usb_simple_msg_callback, priv);
|
kvaser_usb_simple_msg_callback, netdev);
|
||||||
usb_anchor_urb(urb, &priv->tx_submitted);
|
usb_anchor_urb(urb, &priv->tx_submitted);
|
||||||
|
|
||||||
err = usb_submit_urb(urb, GFP_ATOMIC);
|
err = usb_submit_urb(urb, GFP_ATOMIC);
|
||||||
|
|
Loading…
Reference in New Issue