Hi Andrei, > Value to be converted is already in __le32 format. > > Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> > --- > net/bluetooth/mgmt.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c > index 7fcff88..97b5b6c 100644 > --- a/net/bluetooth/mgmt.c > +++ b/net/bluetooth/mgmt.c > @@ -3107,7 +3107,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; actually we do not need put_unaligned_le32 anyway here since the struct itself is already __packed. So you might wanna go through the code and fix these up as well. Regards Marcel -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html