From: Gustavo Padovan <gustavo.padovan@xxxxxxxxxxxxxxx> We don't any endianness conversion in a single byte variable. Signed-off-by: Gustavo Padovan <gustavo.padovan@xxxxxxxxxxxxxxx> --- net/bluetooth/hci_event.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index 8a1f511..1385807 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c @@ -641,7 +641,7 @@ static void hci_cc_read_page_scan_type(struct hci_dev *hdev, BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); if (test_bit(HCI_INIT, &hdev->flags) && !rp->status) - hdev->page_scan_type = __le16_to_cpu(rp->type); + hdev->page_scan_type = rp->type; } static void hci_cc_write_page_scan_type(struct hci_dev *hdev, -- 1.8.1.4 -- 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