hc
2024-05-10 cde9070d9970eef1f7ec2360586c802a16230ad8
kernel/arch/mips/fw/arc/arc_con.c
....@@ -28,7 +28,9 @@
2828
2929 static int prom_console_setup(struct console *co, char *options)
3030 {
31
- return !(prom_flags & PROM_FLAG_USE_AS_CONSOLE);
31
+ if (prom_flags & PROM_FLAG_USE_AS_CONSOLE)
32
+ return 0;
33
+ return -ENODEV;
3234 }
3335
3436 static struct console arc_cons = {