diff options
author | Denys Vlasenko <dvlasenk@redhat.com> | 2015-10-27 17:39:56 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-12-13 19:59:48 -0800 |
commit | f25d596fc2ef038ec91e1135ea7c7717bbd85f55 (patch) | |
tree | e88cdbb8343e0f53231c69b1402963159920b499 /drivers | |
parent | f88d86831b69be7d2ad1ac1ba80af386139e76af (diff) | |
download | talos-obmc-linux-f25d596fc2ef038ec91e1135ea7c7717bbd85f55.tar.gz talos-obmc-linux-f25d596fc2ef038ec91e1135ea7c7717bbd85f55.zip |
cyclades: Deinline cyy_writeb, save 880 bytes
This function compiles to 35 bytes of machine code.
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
CC: Jiri Slaby <jslaby@suse.com>
CC: linux-serial@vger.kernel.org
Reviewed-by: Peter Hurley <peter@hurleysoftware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/tty/cyclades.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/cyclades.c b/drivers/tty/cyclades.c index 9600aa34e19e..da15d165557a 100644 --- a/drivers/tty/cyclades.c +++ b/drivers/tty/cyclades.c @@ -292,7 +292,7 @@ static void cyz_rx_restart(unsigned long); static struct timer_list cyz_rx_full_timer[NR_PORTS]; #endif /* CONFIG_CYZ_INTR */ -static inline void cyy_writeb(struct cyclades_port *port, u32 reg, u8 val) +static void cyy_writeb(struct cyclades_port *port, u32 reg, u8 val) { struct cyclades_card *card = port->card; |