From bd56747e3e93c606008fbf4991c7d7599ace0047 Mon Sep 17 00:00:00 2001 From: Florian Pose Date: Fri, 13 Jul 2012 10:42:31 +0200 Subject: [PATCH] Removed whitespace. --- configure.ac | 2 +- examples/tty/serial.c | 2 +- tty/module.c | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/configure.ac b/configure.ac index 3d2def8c..424142aa 100644 --- a/configure.ac +++ b/configure.ac @@ -20,7 +20,7 @@ # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # # --- -# +# # The license mentioned above concerns the source code only. Using the # EtherCAT technology and brand is only permitted in compliance with the # industrial property and similar rights of Beckhoff Automation GmbH. diff --git a/examples/tty/serial.c b/examples/tty/serial.c index a7f68a0f..9523341e 100644 --- a/examples/tty/serial.c +++ b/examples/tty/serial.c @@ -548,7 +548,7 @@ void el60xx_port_run(el60xx_port_t *port, u8 *pd) } /* Send data */ - + tx_accepted_toggle = status & 0x0001; if (tx_accepted_toggle != port->tx_accepted_toggle) { // ready port->tx_data_size = diff --git a/tty/module.c b/tty/module.c index 6f5d6c15..bc35eaa9 100644 --- a/tty/module.c +++ b/tty/module.c @@ -162,7 +162,7 @@ int __init ec_tty_init_module(void) } return ret; - + out_put: put_tty_driver(tty_driver); out_return: @@ -248,7 +248,7 @@ void ec_tty_clear(ec_tty_t *tty) unsigned int ec_tty_tx_size(ec_tty_t *tty) { unsigned int ret; - + if (tty->tx_write_idx >= tty->tx_read_idx) { ret = tty->tx_write_idx - tty->tx_read_idx; } else { @@ -270,7 +270,7 @@ unsigned int ec_tty_tx_space(ec_tty_t *tty) unsigned int ec_tty_rx_size(ec_tty_t *tty) { unsigned int ret; - + if (tty->rx_write_idx >= tty->rx_read_idx) { ret = tty->rx_write_idx - tty->rx_read_idx; } else { @@ -356,7 +356,7 @@ void ec_tty_wakeup(unsigned long data) tty_flip_buffer_push(tty->tty); } } - + tty->timer.expires += 1; add_timer(&tty->timer); } @@ -427,7 +427,7 @@ static int ec_tty_write( { ec_tty_t *t = (ec_tty_t *) tty->driver_data; unsigned int data_size, i; - + #if EC_TTY_DEBUG >= 1 printk(KERN_INFO PFX "%s(count=%i)\n", __func__, count); #endif