Skip to content

Commit

Permalink
[PATCH] istallion: Remove private baud rate decoding, which is also b…
Browse files Browse the repository at this point in the history
…roken in this case on some platforms

Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Alan Cox authored and Linus Torvalds committed Sep 29, 2006
1 parent d720bc4 commit 1db27c1
Showing 1 changed file with 1 addition and 19 deletions.
20 changes: 1 addition & 19 deletions drivers/char/istallion.c
Original file line number Diff line number Diff line change
Expand Up @@ -612,16 +612,6 @@ MODULE_DEVICE_TABLE(pci, istallion_pci_tbl);
#define MINOR2BRD(min) (((min) & 0xc0) >> 6)
#define MINOR2PORT(min) ((min) & 0x3f)

/*
* Define a baud rate table that converts termios baud rate selector
* into the actual baud rate value. All baud rate calculations are based
* on the actual baud rate required.
*/
static unsigned int stli_baudrates[] = {
0, 50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800,
9600, 19200, 38400, 57600, 115200, 230400, 460800, 921600
};

/*****************************************************************************/

/*
Expand Down Expand Up @@ -2747,15 +2737,7 @@ static void stli_mkasyport(stliport_t *portp, asyport_t *pp, struct termios *tio
/*
* Start of by setting the baud, char size, parity and stop bit info.
*/
pp->baudout = tiosp->c_cflag & CBAUD;
if (pp->baudout & CBAUDEX) {
pp->baudout &= ~CBAUDEX;
if ((pp->baudout < 1) || (pp->baudout > 4))
tiosp->c_cflag &= ~CBAUDEX;
else
pp->baudout += 15;
}
pp->baudout = stli_baudrates[pp->baudout];
pp->baudout = tty_get_baud_rate(portp->tty);
if ((tiosp->c_cflag & CBAUD) == B38400) {
if ((portp->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
pp->baudout = 57600;
Expand Down

0 comments on commit 1db27c1

Please sign in to comment.