[PATCH] USB: ftdi_sio: custom baud rate fix

ftdi_sio: I messed up the baud_base for custom baud rate support in
2.6.13. The attached one-liner patch fixes it.

Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

authored by Ian Abbott and committed by Greg Kroah-Hartman f5e09b7c bc506517

+1 -1
+1 -1
drivers/usb/serial/ftdi_sio.c
··· 914 unsigned interfaces; 915 916 /* Assume it is not the original SIO device for now. */ 917 - priv->baud_base = 48000000 / 16; 918 priv->write_offset = 0; 919 920 version = le16_to_cpu(udev->descriptor.bcdDevice);
··· 914 unsigned interfaces; 915 916 /* Assume it is not the original SIO device for now. */ 917 + priv->baud_base = 48000000 / 2; 918 priv->write_offset = 0; 919 920 version = le16_to_cpu(udev->descriptor.bcdDevice);