Home
last modified time | relevance | path

Searched refs:SC_KERNEL_CONSOLE (Results 1 – 3 of 3) sorted by relevance

/dragonfly/sys/dev/misc/syscons/
HDsyscons_nexus.c113 if (flags & SC_KERNEL_CONSOLE) { in sc_get_softc()
171 if (f & SC_KERNEL_CONSOLE) { in sc_get_cons_priority()
188 return ((*flags & SC_KERNEL_CONSOLE) ? CN_INTERNAL : CN_NORMAL); in sc_get_cons_priority()
HDsyscons.c333 sc = sc_get_softc(0, (sc_console_unit == 0) ? SC_KERNEL_CONSOLE : 0); in register_framebuffer()
337 0, (sc_console_unit == 0) ? SC_KERNEL_CONSOLE : 0); in register_framebuffer()
400 sc = sc_get_softc(0, (sc_console_unit == 0) ? SC_KERNEL_CONSOLE : 0); in unregister_framebuffer()
404 0, (sc_console_unit == 0) ? SC_KERNEL_CONSOLE : 0); in unregister_framebuffer()
544 flags &= ~SC_KERNEL_CONSOLE; in sc_attach_unit()
556 flags |= SC_KERNEL_CONSOLE; in sc_attach_unit()
575 sc = sc_get_softc(unit, flags & SC_KERNEL_CONSOLE); in sc_attach_unit()
581 if (flags & SC_KERNEL_CONSOLE) { in sc_attach_unit()
722 sc = sc_get_softc(unit, (sc_console_unit == unit) ? SC_KERNEL_CONSOLE : 0); in scopen()
1827 scinit(unit, flags | SC_KERNEL_CONSOLE); in sccninit()
[all …]
HDsyscons.h178 #define SC_KERNEL_CONSOLE (1 << 9) macro