diff options
| author | Denys Vlasenko <[email protected]> | 2015-10-27 17:39:59 +0100 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2015-12-13 19:59:48 -0800 |
| commit | 1a5b34ebebf9be06b03a801cc12a676f2af42a9f (patch) | |
| tree | ce3db6b893790f86f9d2f03a4dcc0a981f753788 | |
| parent | 810e20e705d76b6d3229b4417ab2ba1e178a92fa (diff) | |
serial/bcm63xx_uart: Deinline wait_for_xmitr, save 374 bytes
This function compiles to 141 bytes of machine code.
Signed-off-by: Denys Vlasenko <[email protected]>
CC: Jiri Slaby <[email protected]>
CC: [email protected]
Reviewed-by: Peter Hurley <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/tty/serial/bcm63xx_uart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/bcm63xx_uart.c b/drivers/tty/serial/bcm63xx_uart.c index a1c0a89d9c7f..c28e5c24da16 100644 --- a/drivers/tty/serial/bcm63xx_uart.c +++ b/drivers/tty/serial/bcm63xx_uart.c @@ -653,7 +653,7 @@ static struct uart_ops bcm_uart_ops = { #ifdef CONFIG_SERIAL_BCM63XX_CONSOLE -static inline void wait_for_xmitr(struct uart_port *port) +static void wait_for_xmitr(struct uart_port *port) { unsigned int tmout; |