diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2013-02-05 18:07:42 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-02-05 11:13:50 -0800 |
commit | 61bc65599f8118fc53975670f19c37fe2be92a3d (patch) | |
tree | 792ad5877f1d7ddff721ead815020e5e4a366129 /drivers/tty/serial | |
parent | 1776fd059c40907297d6c26c51876575d63fd9e2 (diff) | |
download | linux-3.10-61bc65599f8118fc53975670f19c37fe2be92a3d.tar.gz linux-3.10-61bc65599f8118fc53975670f19c37fe2be92a3d.tar.bz2 linux-3.10-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/serial')
-rw-r--r-- | drivers/tty/serial/altera_uart.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/tty/serial/altera_uart.c b/drivers/tty/serial/altera_uart.c index e133c8814bb..13471dd9579 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) |