diff options
author | Al Viro | 2006-11-08 09:28:19 +0100 |
---|---|---|
committer | David S. Miller | 2006-12-03 06:21:29 +0100 |
commit | 6ba9c755e5f044c6a37296481bf6a861e4193a37 (patch) | |
tree | d6b9b656ca6e7b397a3a2f843ebe7ab26e2c1a19 /net/bluetooth/rfcomm | |
parent | [BLUETOOTH]: bnep endianness annotations (diff) | |
download | kernel-qcow2-linux-6ba9c755e5f044c6a37296481bf6a861e4193a37.tar.gz kernel-qcow2-linux-6ba9c755e5f044c6a37296481bf6a861e4193a37.tar.xz kernel-qcow2-linux-6ba9c755e5f044c6a37296481bf6a861e4193a37.zip |
[BLUETOOTH]: rfcomm endianness annotations
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bluetooth/rfcomm')
-rw-r--r-- | net/bluetooth/rfcomm/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/rfcomm/core.c b/net/bluetooth/rfcomm/core.c index ddc4e9d5963e..f3e5b7e2e04c 100644 --- a/net/bluetooth/rfcomm/core.c +++ b/net/bluetooth/rfcomm/core.c @@ -1018,7 +1018,7 @@ static void rfcomm_make_uih(struct sk_buff *skb, u8 addr) if (len > 127) { hdr = (void *) skb_push(skb, 4); - put_unaligned(htobs(__len16(len)), (u16 *) &hdr->len); + put_unaligned(htobs(__len16(len)), (__le16 *) &hdr->len); } else { hdr = (void *) skb_push(skb, 3); hdr->len = __len8(len); |