1 --- a/drivers/bluetooth/hci_usb.c
2 +++ b/drivers/bluetooth/hci_usb.c
3 @@ -259,6 +259,9 @@ static int hci_usb_isoc_rx_submit(struct
6 mtu = husb->isoc_in_ep->wMaxPacketSize;
8 + mtu = (mtu + 1) & ~1; /* brcm: isoc buffers must be aligned on word boundary */
10 size = mtu * HCI_MAX_ISOC_FRAMES;
12 buf = kmalloc(size, GFP_ATOMIC);