summaryrefslogtreecommitdiff
path: root/drivers/tty
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2013-02-05 17:07:42 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-02-05 19:13:50 (GMT)
commit61bc65599f8118fc53975670f19c37fe2be92a3d (patch)
tree792ad5877f1d7ddff721ead815020e5e4a366129 /drivers/tty
parent1776fd059c40907297d6c26c51876575d63fd9e2 (diff)
downloadlinux-61bc65599f8118fc53975670f19c37fe2be92a3d.tar.xz
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 e133c88..13471dd 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)