aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKiran K <kiran.k@intel.com>2021-03-08 18:46:01 +0530
committerMarcel Holtmann <marcel@holtmann.org>2021-03-08 16:48:05 +0100
commitd00745da644d42c2f97293eb3fe19cfd5c0b073c (patch)
tree6bd469ebe6727407c50cc188f20198b07a7a36e1
parent62acbbb661a1a7eb3ee155fe029a4901f4d5cc45 (diff)
downloadbluetooth-next-d00745da644d42c2f97293eb3fe19cfd5c0b073c.tar.gz
Bluetooth: btintel: Fix offset calculation boot address parameter
Boot address parameter was not getting updated properly due to wrong offset Signed-off-by: Kiran K <kiran.k@intel.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
-rw-r--r--drivers/bluetooth/btintel.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/bluetooth/btintel.c b/drivers/bluetooth/btintel.c
index 88ce5f0ffc4ba..fa97324454ea1 100644
--- a/drivers/bluetooth/btintel.c
+++ b/drivers/bluetooth/btintel.c
@@ -863,7 +863,8 @@ static int btintel_download_firmware_payload(struct hci_dev *hdev,
/* The boot parameter is the first 32-bit value
* and rest of 3 octets are reserved.
*/
- *boot_param = get_unaligned_le32(fw_ptr + sizeof(*cmd));
+ *boot_param = get_unaligned_le32(fw_ptr + frag_len +
+ sizeof(*cmd));
bt_dev_dbg(hdev, "boot_param=0x%x", *boot_param);
}