Revert "Logging: Use KERN_EMERG in place of KERN_CRIT"

This reverts commit dfb60a6eb2.
This commit is contained in:
Solar Designer 2022-08-01 13:11:01 +02:00
parent c58cb52145
commit 333ae0774e

View file

@ -107,7 +107,7 @@
int p_print_ret = 0; \
\
if (p_level == P_LOG_ALERT) \
p_print_ret = printk(KERN_EMERG P_LKRG_SIGNATURE "ALERT: " p_fmt "\n", ## p_args); \
p_print_ret = printk(KERN_CRIT P_LKRG_SIGNATURE "ALERT: " p_fmt "\n", ## p_args); \
else if (P_CTRL(p_log_level) >= (p_level & 7)) \
switch (p_level) { \
case P_LOG_ALIVE: \