diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-07-13 02:45:38 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-07-13 02:45:38 -0500 |
commit | 1e78a7b5661a3c11302066262cd250776c83c656 (patch) | |
tree | 6c604a584e6456c344bcf2acb49771edee5ad347 /user/bluez/002-bcm43xx-The-UART-speed-must-be-reset-after-the-firmw.patch | |
parent | ff4cd7d31f2a18039e2ce40960a595d7628f566a (diff) | |
download | packages-1e78a7b5661a3c11302066262cd250776c83c656.tar.gz packages-1e78a7b5661a3c11302066262cd250776c83c656.tar.bz2 packages-1e78a7b5661a3c11302066262cd250776c83c656.tar.xz packages-1e78a7b5661a3c11302066262cd250776c83c656.zip |
user/bluez: pull in, bump, fix up
Diffstat (limited to 'user/bluez/002-bcm43xx-The-UART-speed-must-be-reset-after-the-firmw.patch')
-rw-r--r-- | user/bluez/002-bcm43xx-The-UART-speed-must-be-reset-after-the-firmw.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/user/bluez/002-bcm43xx-The-UART-speed-must-be-reset-after-the-firmw.patch b/user/bluez/002-bcm43xx-The-UART-speed-must-be-reset-after-the-firmw.patch new file mode 100644 index 000000000..a221861d2 --- /dev/null +++ b/user/bluez/002-bcm43xx-The-UART-speed-must-be-reset-after-the-firmw.patch @@ -0,0 +1,33 @@ +From e145c9621f976063e5c573db1f2053d906f63427 Mon Sep 17 00:00:00 2001 +From: Phil Elwell <phil@raspberrypi.org> +Date: Tue, 16 Feb 2016 16:39:09 +0000 +Subject: [PATCH 2/4] bcm43xx: The UART speed must be reset after the firmware + download + +--- + tools/hciattach_bcm43xx.c | 6 ++---- + 1 file changed, 2 insertions(+), 4 deletions(-) + +--- a/tools/hciattach_bcm43xx.c ++++ b/tools/hciattach_bcm43xx.c +@@ -366,11 +366,8 @@ int bcm43xx_init(int fd, int def_speed, + return -1; + + if (bcm43xx_locate_patch(FIRMWARE_DIR, chip_name, fw_path)) { +- fprintf(stderr, "Patch not found, continue anyway\n"); ++ fprintf(stderr, "Patch not found for %s, continue anyway\n", chip_name); + } else { +- if (bcm43xx_set_speed(fd, ti, speed)) +- return -1; +- + if (bcm43xx_load_firmware(fd, fw_path)) + return -1; + +@@ -380,6 +377,7 @@ int bcm43xx_init(int fd, int def_speed, + return -1; + } + ++ sleep(1); + if (bcm43xx_reset(fd)) + return -1; + } |