Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c62a1e57 authored by Wang YanQing's avatar Wang YanQing Committed by Greg Kroah-Hartman
Browse files

vt: convert last bind_con_driver call to do_bind_con_driver



There is only one place use bind_con_driver now, this patch
convert it to do_bind_con_driver too, then we can delete
bind_con_driver whos function can be replaced by do_bind_con_driver
easily to reduce code size and duplication.

Signed-off-by: default avatarWang YanQing <udknight@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c1f5e38a
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -3236,8 +3236,11 @@ static int vt_bind(struct con_driver *con)
		if (first == 0 && last == MAX_NR_CONSOLES -1)
			deflt = 1;

		if (first != -1)
			bind_con_driver(csw, first, last, deflt);
		if (first != -1) {
			console_lock();
			do_bind_con_driver(csw, first, last, deflt);
			console_unlock();
		}

		first = -1;
		last = -1;