Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 221913
b: refs/heads/master
c: 40e3465
h: refs/heads/master
i:
  221911: 2490335
v: v3
  • Loading branch information
Ken Mills authored and Greg Kroah-Hartman committed Nov 11, 2010
1 parent c751c16 commit cd8ac4a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: 820e62ef3d39ba9414dd9b87dba2eedd7e403e53
refs/heads/master: 40e3465db2cffd64e069ca82ee981025554bc159
4 changes: 2 additions & 2 deletions trunk/drivers/tty/n_gsm.c
Original file line number Diff line number Diff line change
Expand Up @@ -716,8 +716,8 @@ static void __gsm_data_queue(struct gsm_dlci *dlci, struct gsm_msg *msg)
if (msg->len < 128)
*--dp = (msg->len << 1) | EA;
else {
*--dp = (msg->len >> 6) | EA;
*--dp = (msg->len & 127) << 1;
*--dp = ((msg->len & 127) << 1) | EA;
*--dp = (msg->len >> 6) & 0xfe;
}
}

Expand Down

0 comments on commit cd8ac4a

Please sign in to comment.