diff options
author | Andy Shevchenko <[email protected]> | 2020-06-18 19:47:47 +0300 |
---|---|---|
committer | Petr Mladek <[email protected]> | 2020-06-25 14:21:28 +0200 |
commit | f85956b7a29d39745d16ebb6fb81c663018beab1 (patch) | |
tree | f20ad4cf065eb148041465da6298973f1b6b5451 | |
parent | 4fc29e63cc44fe1486b4d8037370a7d74db28999 (diff) |
serial: sunsab: Return proper error code from console ->setup() hook
For unifying console ->setup() handling, which is poorly documented,
return error code, rather than non-zero arbitrary number.
Signed-off-by: Andy Shevchenko <[email protected]>
Reviewed-by: Petr Mladek <[email protected]>
Acked-by: David S. Miller <[email protected]>
Signed-off-by: Petr Mladek <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
-rw-r--r-- | drivers/tty/serial/sunsab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/sunsab.c b/drivers/tty/serial/sunsab.c index 1eb703c980e0..bab551f46963 100644 --- a/drivers/tty/serial/sunsab.c +++ b/drivers/tty/serial/sunsab.c @@ -886,7 +886,7 @@ static int sunsab_console_setup(struct console *con, char *options) * though... */ if (up->port.type != PORT_SUNSAB) - return -1; + return -EINVAL; printk("Console: ttyS%d (SAB82532)\n", (sunsab_reg.minor - 64) + con->index); |