From: Sukumar Ghorai Date: Mon, 16 Mar 2020 06:07:18 +0000 (+0530) Subject: Bluetooth: btusb: print Intel fw build version in power-on boot X-Git-Tag: v5.7-rc1~146^2~117^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=905d7b13112dcfdba1983c014f3bf30dc3d4f179;p=thirdparty%2Flinux.git Bluetooth: btusb: print Intel fw build version in power-on boot To determine the build version of Bluetooth firmware to ensure reported issue related to a particular release. This is very helpful for every fw downloaded to BT controller and issue reported from field test. Signed-off-by: Amit K Bag Signed-off-by: Sukumar Ghorai Signed-off-by: Marcel Holtmann --- diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index 4b12c34f0b22d..3bdec42c96123 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c @@ -1938,7 +1938,14 @@ static int btusb_setup_intel(struct hci_dev *hdev) if (err) return err; - bt_dev_info(hdev, "Intel firmware patch completed and activated"); + /* Need build number for downloaded fw patches in + * every power-on boot + */ + err = btintel_read_version(hdev, &ver); + if (err) + return err; + bt_dev_info(hdev, "Intel BT fw patch 0x%02x completed & activated", + ver.fw_patch_num); goto complete;