diff options
author | Anton Wuerfel <anton.wuerfel@fau.de> | 2016-01-14 16:08:10 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-02-06 23:15:53 -0800 |
commit | 1a33e342cf35e53c08d76f2f891e48c014a5f34e (patch) | |
tree | 3a2a792dfce8877d109e4d40d7c2abaf7a52c1b0 /drivers/tty/serial/8250/8250_hub6.c | |
parent | fff21fac75ccebacd29fc16b56a46a124359917a (diff) | |
download | talos-op-linux-1a33e342cf35e53c08d76f2f891e48c014a5f34e.tar.gz talos-op-linux-1a33e342cf35e53c08d76f2f891e48c014a5f34e.zip |
tty: serial: 8250: Fix whitespace errors
This patch fixes whitespace errors reported by checkpatch to increase
readability. Main focus is on missing spaces after commas in
function headers and macros (like foo,bar edited to foo, bar).
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>
Cc: linux-kernel@i4.cs.fau.de
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial/8250/8250_hub6.c')
-rw-r--r-- | drivers/tty/serial/8250/8250_hub6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/8250/8250_hub6.c b/drivers/tty/serial/8250/8250_hub6.c index a5c778e83de0..27124e21eb96 100644 --- a/drivers/tty/serial/8250/8250_hub6.c +++ b/drivers/tty/serial/8250/8250_hub6.c @@ -10,7 +10,7 @@ #include <linux/init.h> #include <linux/serial_8250.h> -#define HUB6(card,port) \ +#define HUB6(card, port) \ { \ .iobase = 0x302, \ .irq = 3, \ |