Removed whitespace.

This commit is contained in:
Florian Pose 2012-07-13 10:42:31 +02:00
parent 73f1d9e8f3
commit bd56747e3e
3 changed files with 7 additions and 7 deletions

View File

@ -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.

View File

@ -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 =

View File

@ -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