> +/* Base timer interval for polling */ > +int uart_poll_timeout(struct uart_port *port) > +{ > + int timeout = port->timeout; > + > + return timeout > 6 ? (timeout / 2 - 2) : 1; > +} > +EXPORT_SYMBOL(uart_poll_timeout); inline this rather than exporting it and making it global - it's a tiny spec of code and the export symbol probably costs more ! -- 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