> + struct pci_dev *pdev = container_of(port->dev, struct pci_dev, dev); > + > switch (termios->c_cflag & CSIZE) { > case CS5: > cval = UART_LCR_WLEN5; > @@ -2351,6 +2354,13 @@ serial8250_do_set_termios(struct uart_port *port, struct ktermios *termios, > if (up->capabilities & UART_CAP_RTOIE) > up->ier |= UART_IER_RTOIE; > > + if ((termios->c_cflag & PARENB) && (pdev->vendor == 0x9710)) { > + fcr = UART_FCR_ENABLE_FIFO | UART_FCR_TRIGGER_1; > + up->ier &= ~UART_IER_RLSI; > + } else { > + up->ier |= UART_IER_RLSI; > + } > + It's on my TODO list for the 3.6 merge. Your patch doesn't work (in fact it crashes in some cases) because it blindly assumes an 8250 port is on the PCI bus. However it documents everything I need to know to push an actual fix. Alan -- To unsubscribe from this list: send the line "unsubscribe linux-serial" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html