aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bluetooth
diff options
context:
space:
mode:
authorAmit K Bag <amit.k.bag@intel.com>2019-09-27 08:21:54 +0530
committerMarcel Holtmann <marcel@holtmann.org>2019-10-16 19:26:40 +0200
commit74ffdf22b3acf8961b6904dda350135e9aaeb445 (patch)
tree9daf9727f81aeeed61ef8739af2126308b5497ec /drivers/bluetooth
parentBluetooth: btrtl: Fix an issue for the incorrect error return code. (diff)
downloadlinux-dev-74ffdf22b3acf8961b6904dda350135e9aaeb445.tar.xz
linux-dev-74ffdf22b3acf8961b6904dda350135e9aaeb445.zip
Bluetooth: btusb: print FW version after FW download
After FW download there is no print to confirm the current FW version. Add print to check FW version incase of FW download. Signed-off-by: Amit K Bag <amit.k.bag@intel.com> Signed-off-by: Yoni Shavit <yshavit@chromium.org> Signed-off-by: Chethan Tumkur Narayan <chethan.tumkur.narayan@intel.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/bluetooth')
-rw-r--r--drivers/bluetooth/btusb.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
index a9c35ebb30f8..270e892c7c8f 100644
--- a/drivers/bluetooth/btusb.c
+++ b/drivers/bluetooth/btusb.c
@@ -2432,6 +2432,13 @@ done:
*/
btintel_set_event_mask(hdev, false);
+ /* Read the Intel version information after loading the FW */
+ err = btintel_read_version(hdev, &ver);
+ if (err)
+ return err;
+
+ btintel_version_info(hdev, &ver);
+
return 0;
}