aboutsummaryrefslogtreecommitdiff
path: root/drivers/tty/serial/8250/8250_hp300.c
diff options
context:
space:
mode:
authorGravatar Anton Wuerfel <anton.wuerfel@fau.de> 2016-01-14 16:08:16 +0100
committerGravatar Greg Kroah-Hartman <gregkh@linuxfoundation.org> 2016-02-06 23:15:53 -0800
commit207c28b1c6b5216247317b1222baa777ee87e632 (patch)
tree8a4bba169eb89be63025d0732812549f9b93ad0f /drivers/tty/serial/8250/8250_hp300.c
parenttty: serial: 8250: Move EXPORT_SYMBOL to function (diff)
downloadlinux-207c28b1c6b5216247317b1222baa777ee87e632.tar.gz
linux-207c28b1c6b5216247317b1222baa777ee87e632.tar.bz2
linux-207c28b1c6b5216247317b1222baa777ee87e632.zip
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 <anton.wuerfel@fau.de> Signed-off-by: Phillip Raffeck <phillip.raffeck@fau.de> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Reviewed-by: Peter Hurley <peter@hurleysoftware.com> Cc: linux-kernel@i4.cs.fau.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial/8250/8250_hp300.c')
-rw-r--r--drivers/tty/serial/8250/8250_hp300.c4
1 files changed, 2 insertions, 2 deletions
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;