Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 41591
b: refs/heads/master
c: 6ba9c75
h: refs/heads/master
i:
  41589: c242b7c
  41587: 1aeacea
  41583: d3232d7
v: v3
  • Loading branch information
Al Viro authored and David S. Miller committed Dec 3, 2006
1 parent 3759c8f commit 2b55882
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1bc5d4483a83349f143e2bbf23ec144cd7e21e89
refs/heads/master: 6ba9c755e5f044c6a37296481bf6a861e4193a37
4 changes: 2 additions & 2 deletions trunk/include/net/bluetooth/rfcomm.h
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand All @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion trunk/net/bluetooth/rfcomm/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 2b55882

Please sign in to comment.