]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
cdc_acm: Fix to use modern speed interfaces
authorAlan Cox <alan@linux.intel.com>
Sat, 19 Sep 2009 20:13:23 +0000 (13:13 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Mon, 5 Oct 2009 16:31:56 +0000 (09:31 -0700)
commit 9b80fee149a875a6292b2556ab2c64dc7ab7d6f5 upstream.

This changed in 2006 so its about time the ACM driver caught up

Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/usb/class/cdc-acm.c

index b8134ad5f05f30317820e091900e477e189c58c3..e3861b21e776600fb721699c8ede4e62dc51f8fc 100644 (file)
@@ -860,10 +860,7 @@ static void acm_tty_set_termios(struct tty_struct *tty,
        if (!ACM_READY(acm))
                return;
 
-       /* FIXME: Needs to support the tty_baud interface */
-       /* FIXME: Broken on sparc */
-       newline.dwDTERate = cpu_to_le32p(acm_tty_speed +
-               (termios->c_cflag & CBAUD & ~CBAUDEX) + (termios->c_cflag & CBAUDEX ? 15 : 0));
+       newline.dwDTERate = cpu_to_le32(tty_get_baud_rate(tty));
        newline.bCharFormat = termios->c_cflag & CSTOPB ? 2 : 0;
        newline.bParityType = termios->c_cflag & PARENB ?
                                (termios->c_cflag & PARODD ? 1 : 2) +