s390: Use pr_info for "KernelAddressSanitizer initialized" message

sclp_early_printk() ignores boot console debug settings and prints
unconditionally. It also prints message without any timestamp
or formatting. Convert it to pr_info().

Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
Acked-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com>
This commit is contained in:
Vasily Gorbik
2024-11-29 12:57:44 +01:00
committed by Alexander Gordeev
parent 70309dc776
commit d2ebe06bf5

View File

@@ -59,7 +59,7 @@ static void __init kasan_early_init(void)
{
#ifdef CONFIG_KASAN
init_task.kasan_depth = 0;
sclp_early_printk("KernelAddressSanitizer initialized\n");
pr_info("KernelAddressSanitizer initialized\n");
#endif
}