1
0
Fork 0

Bluetooth: bpa10x: change return value

When returning from bpa10x_send_frame, it is necessary to propagate any
potential errno returned from usb_submit_urb.

Signed-off-by: Navid Emamdoost <navid.emamdoost@gmail.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
alistair/sunxi64-5.4-dsi
Navid Emamdoost 2019-08-31 14:23:40 -05:00 committed by Marcel Holtmann
parent 31fb1bbdab
commit d94dfd798c
1 changed files with 1 additions and 1 deletions

View File

@ -337,7 +337,7 @@ static int bpa10x_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
usb_free_urb(urb);
return 0;
return err;
}
static int bpa10x_set_diag(struct hci_dev *hdev, bool enable)