]> err.no Git - linux-2.6/commitdiff
[BLUETOOTH]: rfcomm endianness annotations
authorAl Viro <viro@zeniv.linux.org.uk>
Wed, 8 Nov 2006 08:28:19 +0000 (00:28 -0800)
committerDavid S. Miller <davem@sunset.davemloft.net>
Sun, 3 Dec 2006 05:21:29 +0000 (21:21 -0800)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/bluetooth/rfcomm.h
net/bluetooth/rfcomm/core.c

index 89d743cfdfdfdd107d315331d37d5650305e52ad..3c563f02907cc5228b21aac7967f874039047f4c 100644 (file)
@@ -124,7 +124,7 @@ struct rfcomm_pn {
        u8  flow_ctrl;
        u8  priority;
        u8  ack_timer;
-       u16 mtu;
+       __le16 mtu;
        u8  max_retrans;
        u8  credits;
 } __attribute__ ((packed));
@@ -136,7 +136,7 @@ struct rfcomm_rpn {
        u8  flow_ctrl;
        u8  xon_char;
        u8  xoff_char;
-       u16 param_mask;
+       __le16 param_mask;
 } __attribute__ ((packed));
 
 struct rfcomm_rls {
index ddc4e9d5963e850f86d768abef9481f849392439..f3e5b7e2e04cdad143160ac8947c67ca98ecf0be 100644 (file)
@@ -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);