Bluetooth: Fix extra conversion to __le32
Value to be converted is already in __le32 format. Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com> Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
This commit is contained in:
parent
9a00665792
commit
78e8098e7b
|
@ -3112,7 +3112,7 @@ int mgmt_user_confirm_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
|
|||
bacpy(&ev.addr.bdaddr, bdaddr);
|
||||
ev.addr.type = link_to_mgmt(link_type, addr_type);
|
||||
ev.confirm_hint = confirm_hint;
|
||||
put_unaligned_le32(value, &ev.value);
|
||||
ev.value = value;
|
||||
|
||||
return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, hdev, &ev, sizeof(ev),
|
||||
NULL);
|
||||
|
|
Loading…
Reference in New Issue