forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-09-20 a36159eec6ca17402b0e146b86efaf76568dc353
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 = {