Commit a46c9994 authored by Alan Cox's avatar Alan Cox Committed by Linus Torvalds

serial_core: bring mostly into line with coding style

Signed-off-by: default avatarAlan Cox <alan@redhat.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent b4c502a7
...@@ -58,7 +58,8 @@ static struct lock_class_key port_lock_key; ...@@ -58,7 +58,8 @@ static struct lock_class_key port_lock_key;
#define uart_console(port) (0) #define uart_console(port) (0)
#endif #endif
static void uart_change_speed(struct uart_state *state, struct ktermios *old_termios); static void uart_change_speed(struct uart_state *state,
struct ktermios *old_termios);
static void uart_wait_until_sent(struct tty_struct *tty, int timeout); static void uart_wait_until_sent(struct tty_struct *tty, int timeout);
static void uart_change_pm(struct uart_state *state, int pm_state); static void uart_change_pm(struct uart_state *state, int pm_state);
...@@ -129,8 +130,8 @@ uart_update_mctrl(struct uart_port *port, unsigned int set, unsigned int clear) ...@@ -129,8 +130,8 @@ uart_update_mctrl(struct uart_port *port, unsigned int set, unsigned int clear)
spin_unlock_irqrestore(&port->lock, flags); spin_unlock_irqrestore(&port->lock, flags);
} }
#define uart_set_mctrl(port,set) uart_update_mctrl(port,set,0) #define uart_set_mctrl(port, set) uart_update_mctrl(port, set, 0)
#define uart_clear_mctrl(port,clear) uart_update_mctrl(port,0,clear) #define uart_clear_mctrl(port, clear) uart_update_mctrl(port, 0, clear)
/* /*
* Startup the port. This will be called once per open. All calls * Startup the port. This will be called once per open. All calls
...@@ -290,7 +291,7 @@ uart_update_timeout(struct uart_port *port, unsigned int cflag, ...@@ -290,7 +291,7 @@ uart_update_timeout(struct uart_port *port, unsigned int cflag,
break; break;
default: default:
bits = 10; bits = 10;
break; // CS8 break; /* CS8 */
} }
if (cflag & CSTOPB) if (cflag & CSTOPB)
...@@ -788,7 +789,8 @@ static int uart_set_info(struct uart_state *state, ...@@ -788,7 +789,8 @@ static int uart_set_info(struct uart_state *state,
* We failed anyway. * We failed anyway.
*/ */
retval = -EBUSY; retval = -EBUSY;
goto exit; // Added to return the correct error -Ram Gupta /* Added to return the correct error -Ram Gupta */
goto exit;
} }
} }
...@@ -1137,7 +1139,8 @@ uart_ioctl(struct tty_struct *tty, struct file *filp, unsigned int cmd, ...@@ -1137,7 +1139,8 @@ uart_ioctl(struct tty_struct *tty, struct file *filp, unsigned int cmd,
return ret; return ret;
} }
static void uart_set_termios(struct tty_struct *tty, struct ktermios *old_termios) static void uart_set_termios(struct tty_struct *tty,
struct ktermios *old_termios)
{ {
struct uart_state *state = tty->driver_data; struct uart_state *state = tty->driver_data;
unsigned long flags; unsigned long flags;
...@@ -1461,9 +1464,8 @@ uart_block_til_ready(struct file *filp, struct uart_state *state) ...@@ -1461,9 +1464,8 @@ uart_block_til_ready(struct file *filp, struct uart_state *state)
*/ */
if ((filp->f_flags & O_NONBLOCK) || if ((filp->f_flags & O_NONBLOCK) ||
(info->tty->termios->c_cflag & CLOCAL) || (info->tty->termios->c_cflag & CLOCAL) ||
(info->tty->flags & (1 << TTY_IO_ERROR))) { (info->tty->flags & (1 << TTY_IO_ERROR)))
break; break;
}
/* /*
* Set DTR to allow modem to know we're waiting. Do * Set DTR to allow modem to know we're waiting. Do
...@@ -1682,8 +1684,7 @@ static int uart_line_info(char *buf, struct uart_driver *drv, int i) ...@@ -1682,8 +1684,7 @@ static int uart_line_info(char *buf, struct uart_driver *drv, int i)
return ret + 1; return ret + 1;
} }
if(capable(CAP_SYS_ADMIN)) if (capable(CAP_SYS_ADMIN)) {
{
mutex_lock(&state->mutex); mutex_lock(&state->mutex);
pm_state = state->pm_state; pm_state = state->pm_state;
if (pm_state) if (pm_state)
...@@ -1710,11 +1711,11 @@ static int uart_line_info(char *buf, struct uart_driver *drv, int i) ...@@ -1710,11 +1711,11 @@ static int uart_line_info(char *buf, struct uart_driver *drv, int i)
ret += sprintf(buf + ret, " oe:%d", ret += sprintf(buf + ret, " oe:%d",
port->icount.overrun); port->icount.overrun);
#define INFOBIT(bit,str) \ #define INFOBIT(bit, str) \
if (port->mctrl & (bit)) \ if (port->mctrl & (bit)) \
strncat(stat_buf, (str), sizeof(stat_buf) - \ strncat(stat_buf, (str), sizeof(stat_buf) - \
strlen(stat_buf) - 2) strlen(stat_buf) - 2)
#define STATBIT(bit,str) \ #define STATBIT(bit, str) \
if (status & (bit)) \ if (status & (bit)) \
strncat(stat_buf, (str), sizeof(stat_buf) - \ strncat(stat_buf, (str), sizeof(stat_buf) - \
strlen(stat_buf) - 2) strlen(stat_buf) - 2)
...@@ -1992,11 +1993,11 @@ int uart_suspend_port(struct uart_driver *drv, struct uart_port *port) ...@@ -1992,11 +1993,11 @@ int uart_suspend_port(struct uart_driver *drv, struct uart_port *port)
/* /*
* Wait for the transmitter to empty. * Wait for the transmitter to empty.
*/ */
for (tries = 3; !ops->tx_empty(port) && tries; tries--) { for (tries = 3; !ops->tx_empty(port) && tries; tries--)
msleep(10); msleep(10);
}
if (!tries) if (!tries)
printk(KERN_ERR "%s%s%s%d: Unable to drain transmitter\n", printk(KERN_ERR "%s%s%s%d: Unable to drain "
"transmitter\n",
port->dev ? port->dev->bus_id : "", port->dev ? port->dev->bus_id : "",
port->dev ? ": " : "", port->dev ? ": " : "",
drv->dev_name, port->line); drv->dev_name, port->line);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment