Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 905f3ed6 authored by Al Viro's avatar Al Viro Committed by Linus Torvalds
Browse files

[PATCH] hci endianness annotations

parent db71b7f1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -739,13 +739,13 @@ struct sockaddr_hci {
struct hci_filter {
	unsigned long type_mask;
	unsigned long event_mask[2];
	__u16   opcode;
	__le16   opcode;
};

struct hci_ufilter {
	__u32   type_mask;
	__u32   event_mask[2];
	__u16   opcode;
	__le16   opcode;
};

#define HCI_FLT_TYPE_BITS	31
+2 −2
Original line number Diff line number Diff line
@@ -123,10 +123,10 @@ void hci_send_to_sock(struct hci_dev *hdev, struct sk_buff *skb)
			if (flt->opcode &&
			    ((evt == HCI_EV_CMD_COMPLETE &&
			      flt->opcode !=
			      get_unaligned((__u16 *)(skb->data + 3))) ||
			      get_unaligned((__le16 *)(skb->data + 3))) ||
			     (evt == HCI_EV_CMD_STATUS &&
			      flt->opcode !=
			      get_unaligned((__u16 *)(skb->data + 4)))))
			      get_unaligned((__le16 *)(skb->data + 4)))))
				continue;
		}