Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

vgacon: Use pr_warn instead of pr_warning

As said in commit f2c2cbcc35d4 ("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: Kefeng Wang <wangkefeng.wang@huawei.com>
Reviewed-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
Signed-off-by: Petr Mladek <pmladek@suse.com>

authored by

Kefeng Wang and committed by
Petr Mladek
3e3d38bd a4e530ae

+3 -3
+3 -3
drivers/video/console/vgacon.c
··· 113 113 { 114 114 vgacon_text_mode_force = true; 115 115 116 - pr_warning("You have booted with nomodeset. This means your GPU drivers are DISABLED\n"); 117 - pr_warning("Any video related functionality will be severely degraded, and you may not even be able to suspend the system properly\n"); 118 - pr_warning("Unless you actually understand what nomodeset does, you should reboot without enabling it\n"); 116 + pr_warn("You have booted with nomodeset. This means your GPU drivers are DISABLED\n"); 117 + pr_warn("Any video related functionality will be severely degraded, and you may not even be able to suspend the system properly\n"); 118 + pr_warn("Unless you actually understand what nomodeset does, you should reboot without enabling it\n"); 119 119 120 120 return 1; 121 121 }