Re: [PATCH 1/5] serial: Factor out uart_poll_timeout() from 8250driver

From: Alan Cox
Date: Tue Sep 28 2010 - 09:41:30 EST


> +/* 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-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/