mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
tty: vt, return error when con_startup fails
When csw->con_startup() fails in do_register_con_driver, we return no error (i.e. 0). This was changed back in 2006 by commit3e795de763
. Before that we used to return -ENODEV. So fix the return value to be -ENODEV in that case again. Fixes:3e795de763
("VT binding: Add binding/unbinding support for the VT console") Signed-off-by: Jiri Slaby <jslaby@suse.cz> Reported-by: "Dan Carpenter" <dan.carpenter@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
11ca2b7ab4
commit
6798df4c5f
1 changed files with 3 additions and 2 deletions
|
@ -3594,9 +3594,10 @@ static int do_register_con_driver(const struct consw *csw, int first, int last)
|
|||
goto err;
|
||||
|
||||
desc = csw->con_startup();
|
||||
|
||||
if (!desc)
|
||||
if (!desc) {
|
||||
retval = -ENODEV;
|
||||
goto err;
|
||||
}
|
||||
|
||||
retval = -EINVAL;
|
||||
|
||||
|
|
Loading…
Reference in a new issue