Commit 1a039891 authored by Johan Hovold's avatar Johan Hovold
Browse files

USB: serial: ftdi_sio: simplify divisor handling



In preparation for adding further Hi-Speed types, assume the device type
is Hi-Speed unless it's an explicitly listed legacy type when
determining divisors.

Signed-off-by: default avatarJohan Hovold <johan@kernel.org>
parent 4d50f4fc
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -1369,9 +1369,7 @@ static u32 get_ftdi_divisor(struct tty_struct *tty,
			baud = 9600;
		}
		break;
	case FT2232H:
	case FT4232H:
	case FT232H:
	default:
		if ((baud <= 12000000) && (baud >= 1200)) {
			div_value = ftdi_2232h_baud_to_divisor(baud);
		} else if (baud < 1200) {