summaryrefslogtreecommitdiff
path: root/openwrt/target/linux/linux-2.4/patches
diff options
context:
space:
mode:
authorWaldemar Brodkorb <mail@waldemar-brodkorb.de>2005-07-26 21:35:01 +0000
committerWaldemar Brodkorb <mail@waldemar-brodkorb.de>2005-07-26 21:35:01 +0000
commite2abfd7c9808297b9e1c18226d88102b2cf6793c (patch)
treead9240976968d2cc253913e8ce26dba6094c0e26 /openwrt/target/linux/linux-2.4/patches
parenta442289eed89273d55b52c43d1a303d8cb0759f3 (diff)
downloadmtk-20170518-e2abfd7c9808297b9e1c18226d88102b2cf6793c.zip
mtk-20170518-e2abfd7c9808297b9e1c18226d88102b2cf6793c.tar.gz
mtk-20170518-e2abfd7c9808297b9e1c18226d88102b2cf6793c.tar.bz2
bluetooth fixes from Tomas Vanek
SVN-Revision: 1571
Diffstat (limited to 'openwrt/target/linux/linux-2.4/patches')
-rw-r--r--openwrt/target/linux/linux-2.4/patches/brcm/005-bluetooth_sco_buffer_align.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/openwrt/target/linux/linux-2.4/patches/brcm/005-bluetooth_sco_buffer_align.patch b/openwrt/target/linux/linux-2.4/patches/brcm/005-bluetooth_sco_buffer_align.patch
new file mode 100644
index 0000000..77ade1c
--- /dev/null
+++ b/openwrt/target/linux/linux-2.4/patches/brcm/005-bluetooth_sco_buffer_align.patch
@@ -0,0 +1,12 @@
+--- linux-2.4.30/drivers/bluetooth/hci_usb.c 2004-08-08 01:26:04.000000000 +0200
++++ linux-2.4.30/drivers/bluetooth/hci_usb.c 2005-07-25 20:12:11.000000000 +0200
+@@ -259,6 +259,9 @@
+ void *buf;
+
+ mtu = husb->isoc_in_ep->wMaxPacketSize;
++#ifdef CONFIG_BCM4710
++ mtu = (mtu + 1) & ~1; /* brcm: isoc buffers must be aligned on word boundary */
++#endif
+ size = mtu * HCI_MAX_ISOC_FRAMES;
+
+ buf = kmalloc(size, GFP_ATOMIC);