Commit 3e3d38bd authored by Kefeng Wang's avatar Kefeng Wang Committed by Petr Mladek
Browse files

vgacon: Use pr_warn instead of pr_warning

As said in commit f2c2cbcc ("powerpc: Use pr_warn instead of
pr_warning"), removing pr_warning so all logging messages use a
consistent <prefix>_warn style. Let's do it.

Link: http://lkml.kernel.org/r/20191018031850.48498-24-wangkefeng.wang@huawei.com


To: linux-kernel@vger.kernel.org
Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Cc: linux-fbdev@vger.kernel.org
Signed-off-by: default avatarKefeng Wang <wangkefeng.wang@huawei.com>
Reviewed-by: default avatarSergey Senozhatsky <sergey.senozhatsky@gmail.com>
Signed-off-by: default avatarPetr Mladek <pmladek@suse.com>
parent a4e530ae
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -113,9 +113,9 @@ static int __init text_mode(char *str)
{
	vgacon_text_mode_force = true;

	pr_warning("You have booted with nomodeset. This means your GPU drivers are DISABLED\n");
	pr_warning("Any video related functionality will be severely degraded, and you may not even be able to suspend the system properly\n");
	pr_warning("Unless you actually understand what nomodeset does, you should reboot without enabling it\n");
	pr_warn("You have booted with nomodeset. This means your GPU drivers are DISABLED\n");
	pr_warn("Any video related functionality will be severely degraded, and you may not even be able to suspend the system properly\n");
	pr_warn("Unless you actually understand what nomodeset does, you should reboot without enabling it\n");

	return 1;
}