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

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

fbcon: convert last fbcon_takeover call to do_fbcon_takeover



After commit 054430e7 (fbcon: fix locking harder),
there is only one place use do_fbcon_takeover now, this patch
convert it to do_fbcon_takeover too, then we can delete
fbcon_takeover whos function can be achieved with do_fbcon_takeover
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 582f5590
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -3543,8 +3543,9 @@ static void fbcon_start(void)
			}
			}
		}
		}


		do_fbcon_takeover(0);
		console_unlock();
		console_unlock();
		fbcon_takeover(0);

	}
	}
}
}