baud_sup          426 drivers/usb/serial/pl2303.c 	static const speed_t baud_sup[] = {
baud_sup          434 drivers/usb/serial/pl2303.c 	for (i = 0; i < ARRAY_SIZE(baud_sup); ++i) {
baud_sup          435 drivers/usb/serial/pl2303.c 		if (baud_sup[i] > baud)
baud_sup          439 drivers/usb/serial/pl2303.c 	if (i == ARRAY_SIZE(baud_sup))
baud_sup          440 drivers/usb/serial/pl2303.c 		baud = baud_sup[i - 1];
baud_sup          441 drivers/usb/serial/pl2303.c 	else if (i > 0 && (baud_sup[i] - baud) > (baud - baud_sup[i - 1]))
baud_sup          442 drivers/usb/serial/pl2303.c 		baud = baud_sup[i - 1];
baud_sup          444 drivers/usb/serial/pl2303.c 		baud = baud_sup[i];
baud_sup          506 drivers/usb/serial/pl2303.c 	speed_t	baud_sup;
baud_sup          519 drivers/usb/serial/pl2303.c 	baud_sup = pl2303_get_supported_baud_rate(baud);
baud_sup          521 drivers/usb/serial/pl2303.c 	if (baud == baud_sup)