From: Anton Wuerfel Date: Thu, 14 Jan 2016 15:08:16 +0000 (+0100) Subject: tty: serial: 8250: Fix line continuation warning X-Git-Tag: next-20160210~21^2~21 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=207c28b1c6b5216247317b1222baa777ee87e632;p=karo-tx-linux.git tty: serial: 8250: Fix line continuation warning Fixed checkpatch warning about an unnecessary line continuation in a multi-line variable assignment. Signed-off-by: Anton Würfel Signed-off-by: Phillip Raffeck Reviewed-by: Andy Shevchenko Reviewed-by: Peter Hurley Cc: linux-kernel@i4.cs.fau.de Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/serial/8250/8250_hp300.c b/drivers/tty/serial/8250/8250_hp300.c index 5e1b464b9e3b..cf566bbf8531 100644 --- a/drivers/tty/serial/8250/8250_hp300.c +++ b/drivers/tty/serial/8250/8250_hp300.c @@ -248,8 +248,8 @@ static int __init hp300_8250_init(void) /* Memory mapped I/O */ uart.port.iotype = UPIO_MEM; - uart.port.flags = UPF_SKIP_TEST | UPF_SHARE_IRQ \ - | UPF_BOOT_AUTOCONF; + uart.port.flags = UPF_SKIP_TEST | UPF_SHARE_IRQ + | UPF_BOOT_AUTOCONF; /* XXX - no interrupt support yet */ uart.port.irq = 0; uart.port.uartclk = HPAPCI_BAUD_BASE * 16;