drivers: tty: 68328serial.c: Add missing spaces(checkpatch)

This patch adds missing spaces reported by checkpatch.

Signed-off-by: Frederik Völkel <frederik.voelkel@fau.de>
Signed-off-by: Lukas Braun <lukas.braun@fau.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Frederik Völkel 2015-12-11 11:36:01 +01:00 committed by Greg Kroah-Hartman
parent 858965d909
commit ba4f10ae1b
1 changed files with 46 additions and 46 deletions

View File

@ -274,8 +274,8 @@ static void receive_chars(struct m68k_serial *info, unsigned short rx)
#endif #endif
ch = GET_FIELD(rx, URX_RXDATA); ch = GET_FIELD(rx, URX_RXDATA);
if(info->is_cons) { if (info->is_cons) {
if(URX_BREAK & rx) { /* whee, break received */ if (URX_BREAK & rx) { /* whee, break received */
return; return;
#ifdef CONFIG_MAGIC_SYSRQ #ifdef CONFIG_MAGIC_SYSRQ
} else if (ch == 0x10) { /* ^P */ } else if (ch == 0x10) { /* ^P */
@ -302,7 +302,7 @@ static void receive_chars(struct m68k_serial *info, unsigned short rx)
tty_insert_flip_char(&info->tport, ch, flag); tty_insert_flip_char(&info->tport, ch, flag);
#ifndef CONFIG_XCOPILOT_BUGS #ifndef CONFIG_XCOPILOT_BUGS
} while((rx = uart->urx.w) & URX_DATA_READY); } while ((rx = uart->urx.w) & URX_DATA_READY);
#endif #endif
tty_schedule_flip(&info->tport); tty_schedule_flip(&info->tport);
@ -330,7 +330,7 @@ static void transmit_chars(struct m68k_serial *info, struct tty_struct *tty)
info->xmit_tail = info->xmit_tail & (SERIAL_XMIT_SIZE-1); info->xmit_tail = info->xmit_tail & (SERIAL_XMIT_SIZE-1);
info->xmit_cnt--; info->xmit_cnt--;
if(info->xmit_cnt <= 0) { if (info->xmit_cnt <= 0) {
/* All done for now... TX ints off */ /* All done for now... TX ints off */
uart->ustcnt &= ~USTCNT_TX_INTR_MASK; uart->ustcnt &= ~USTCNT_TX_INTR_MASK;
goto clear_and_return; goto clear_and_return;
@ -452,45 +452,45 @@ struct {
} }
#ifndef CONFIG_M68VZ328 #ifndef CONFIG_M68VZ328
hw_baud_table[18] = { hw_baud_table[18] = {
{0,0}, /* 0 */ {0, 0}, /* 0 */
{0,0}, /* 50 */ {0, 0}, /* 50 */
{0,0}, /* 75 */ {0, 0}, /* 75 */
{0,0}, /* 110 */ {0, 0}, /* 110 */
{0,0}, /* 134 */ {0, 0}, /* 134 */
{0,0}, /* 150 */ {0, 0}, /* 150 */
{0,0}, /* 200 */ {0, 0}, /* 200 */
{7,0x26}, /* 300 */ {7, 0x26}, /* 300 */
{6,0x26}, /* 600 */ {6, 0x26}, /* 600 */
{5,0x26}, /* 1200 */ {5, 0x26}, /* 1200 */
{0,0}, /* 1800 */ {0, 0}, /* 1800 */
{4,0x26}, /* 2400 */ {4, 0x26}, /* 2400 */
{3,0x26}, /* 4800 */ {3, 0x26}, /* 4800 */
{2,0x26}, /* 9600 */ {2, 0x26}, /* 9600 */
{1,0x26}, /* 19200 */ {1, 0x26}, /* 19200 */
{0,0x26}, /* 38400 */ {0, 0x26}, /* 38400 */
{1,0x38}, /* 57600 */ {1, 0x38}, /* 57600 */
{0,0x38}, /* 115200 */ {0, 0x38}, /* 115200 */
}; };
#else #else
hw_baud_table[18] = { hw_baud_table[18] = {
{0,0}, /* 0 */ {0, 0}, /* 0 */
{0,0}, /* 50 */ {0, 0}, /* 50 */
{0,0}, /* 75 */ {0, 0}, /* 75 */
{0,0}, /* 110 */ {0, 0}, /* 110 */
{0,0}, /* 134 */ {0, 0}, /* 134 */
{0,0}, /* 150 */ {0, 0}, /* 150 */
{0,0}, /* 200 */ {0, 0}, /* 200 */
{0,0}, /* 300 */ {0, 0}, /* 300 */
{7,0x26}, /* 600 */ {7, 0x26}, /* 600 */
{6,0x26}, /* 1200 */ {6, 0x26}, /* 1200 */
{0,0}, /* 1800 */ {0, 0}, /* 1800 */
{5,0x26}, /* 2400 */ {5, 0x26}, /* 2400 */
{4,0x26}, /* 4800 */ {4, 0x26}, /* 4800 */
{3,0x26}, /* 9600 */ {3, 0x26}, /* 9600 */
{2,0x26}, /* 19200 */ {2, 0x26}, /* 19200 */
{1,0x26}, /* 38400 */ {1, 0x26}, /* 38400 */
{0,0x26}, /* 57600 */ {0, 0x26}, /* 57600 */
{1,0x38}, /* 115200 */ {1, 0x38}, /* 115200 */
}; };
#endif #endif
/* rate = 1036800 / ((65 - prescale) * (1<<divider)) */ /* rate = 1036800 / ((65 - prescale) * (1<<divider)) */
@ -591,8 +591,8 @@ void console_print_68328(const char *p)
{ {
char c; char c;
while((c=*(p++)) != 0) { while ((c = *(p++)) != 0) {
if(c == '\n') if (c == '\n')
rs_put_char('\r'); rs_put_char('\r');
rs_put_char(c); rs_put_char(c);
} }
@ -624,7 +624,7 @@ static void rs_flush_chars(struct tty_struct *tty)
if (serial_paranoia_check(info, tty->name, "rs_flush_chars")) if (serial_paranoia_check(info, tty->name, "rs_flush_chars"))
return; return;
#ifndef USE_INTS #ifndef USE_INTS
for(;;) { for (;;) {
#endif #endif
/* Enable transmitter */ /* Enable transmitter */
@ -700,7 +700,7 @@ static int rs_write(struct tty_struct * tty,
/* Enable transmitter */ /* Enable transmitter */
local_irq_disable(); local_irq_disable();
#ifndef USE_INTS #ifndef USE_INTS
while(info->xmit_cnt) { while (info->xmit_cnt) {
#endif #endif
uart->ustcnt |= USTCNT_TXEN; uart->ustcnt |= USTCNT_TXEN;
@ -1180,7 +1180,7 @@ rs68328_init(void)
local_irq_save(flags); local_irq_save(flags);
for(i=0;i<NR_PORTS;i++) { for (i = 0; i < NR_PORTS; i++) {
info = &m68k_soft[i]; info = &m68k_soft[i];
tty_port_init(&info->tport); tty_port_init(&info->tport);
@ -1263,7 +1263,7 @@ int m68328_console_setup(struct console *cp, char *arg)
return(-1); return(-1);
if (arg) if (arg)
n = simple_strtoul(arg,NULL,0); n = simple_strtoul(arg, NULL, 0);
for (i = 0; i < ARRAY_SIZE(baud_table); i++) for (i = 0; i < ARRAY_SIZE(baud_table); i++)
if (baud_table[i] == n) if (baud_table[i] == n)