diff options
| author | Anton Wuerfel <[email protected]> | 2016-01-14 16:08:12 +0100 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2016-02-06 23:15:53 -0800 |
| commit | f7941f508d1eabdd1046eef4182d6052d853f09c (patch) | |
| tree | 2148d4a4428db7e3ca121605bdfce5f3fae43ee9 | |
| parent | 6d7c157fc706c173b720f0bae58e7a88ccfbeb9f (diff) | |
tty: serial: 8250: Fix braces after struct
This patch fixes a checkpatch warning by moving an opening curly brace
to its correct position.
Signed-off-by: Anton Würfel <[email protected]>
Signed-off-by: Phillip Raffeck <[email protected]>
Reviewed-by: Andy Shevchenko <[email protected]>
Reviewed-by: Peter Hurley <[email protected]>
Cc: [email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/tty/serial/8250/8250_hp300.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/tty/serial/8250/8250_hp300.c b/drivers/tty/serial/8250/8250_hp300.c index 2891958cd842..5e1b464b9e3b 100644 --- a/drivers/tty/serial/8250/8250_hp300.c +++ b/drivers/tty/serial/8250/8250_hp300.c @@ -24,8 +24,7 @@ #endif #ifdef CONFIG_HPAPCI -struct hp300_port -{ +struct hp300_port { struct hp300_port *next; /* next port */ int line; /* line (tty) number */ }; |