hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/arch/s390/kernel/early_printk.c
....@@ -10,7 +10,7 @@
1010
1111 static void sclp_early_write(struct console *con, const char *s, unsigned int len)
1212 {
13
- __sclp_early_printk(s, len, 0);
13
+ __sclp_early_printk(s, len);
1414 }
1515
1616 static struct console sclp_early_console = {
....@@ -25,7 +25,7 @@
2525 if (early_console)
2626 return 0;
2727 /* Accept only "earlyprintk" and "earlyprintk=sclp" */
28
- if (buf && strncmp(buf, "sclp", 4))
28
+ if (buf && !str_has_prefix(buf, "sclp"))
2929 return 0;
3030 if (!sclp.has_linemode && !sclp.has_vt220)
3131 return 0;