summaryrefslogtreecommitdiffstats
path: root/drivers/tty
diff options
context:
space:
mode:
authorTobias Klauser2013-02-05 18:07:42 +0100
committerGreg Kroah-Hartman2013-02-05 20:13:50 +0100
commit61bc65599f8118fc53975670f19c37fe2be92a3d (patch)
tree792ad5877f1d7ddff721ead815020e5e4a366129 /drivers/tty
parentOMAP/serial: Fix incorrect Rx FIFO threshold setting, LSR validation on Tx, a... (diff)
downloadkernel-qcow2-linux-61bc65599f8118fc53975670f19c37fe2be92a3d.tar.gz
kernel-qcow2-linux-61bc65599f8118fc53975670f19c37fe2be92a3d.tar.xz
kernel-qcow2-linux-61bc65599f8118fc53975670f19c37fe2be92a3d.zip
tty: serial: altera_uart: Simplify altera_uart_init()
No need for two separate return statements, consolidate them. Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty')
-rw-r--r--drivers/tty/serial/altera_uart.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/tty/serial/altera_uart.c b/drivers/tty/serial/altera_uart.c
index e133c8814bb5..13471dd95793 100644
--- a/drivers/tty/serial/altera_uart.c
+++ b/drivers/tty/serial/altera_uart.c
@@ -637,11 +637,9 @@ static int __init altera_uart_init(void)
if (rc)
return rc;
rc = platform_driver_register(&altera_uart_platform_driver);
- if (rc) {
+ if (rc)
uart_unregister_driver(&altera_uart_driver);
- return rc;
- }
- return 0;
+ return rc;
}
static void __exit altera_uart_exit(void)