Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 235284
b: refs/heads/master
c: f6c259a
h: refs/heads/master
v: v3
  • Loading branch information
Daniel Glöckner authored and Greg Kroah-Hartman committed Jan 23, 2011
1 parent 5a04e05 commit 36e91ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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: 9abff15dd69c6f4ed88ecc8ba089f55e9cf6655e
refs/heads/master: f6c259a39fd7bb8db6661690976a0f05d12b707d
2 changes: 1 addition & 1 deletion trunk/drivers/usb/serial/ftdi_sio.c
Original file line number Diff line number Diff line change
Expand Up @@ -955,7 +955,7 @@ static __u32 ftdi_2232h_baud_base_to_divisor(int baud, int base)
int divisor3;

/* hi-speed baud rate is 10-bit sampling instead of 16-bit */
divisor3 = (base / 10 / baud) * 8;
divisor3 = base * 8 / (baud * 10);

divisor = divisor3 >> 3;
divisor |= (__u32)divfrac[divisor3 & 0x7] << 14;
Expand Down

0 comments on commit 36e91ae

Please sign in to comment.