Changes in kernel/arch/sparc64/src/console.c [253d3d0:a71c158] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/console.c
r253d3d0 ra71c158 103 103 } 104 104 #endif 105 105 106 #ifdef CONFIG_SGCN_PRN 106 sgcnout_init(); 107 outdev_t *sgcndev = sgcnout_init(); 108 if (sgcndev) 109 stdout_wire(sgcndev); 107 110 #endif 108 111 } … … 131 134 } 132 135 133 134 /** Acquire console back for kernel135 *136 */137 void arch_grab_console(void)138 {139 #ifdef CONFIG_FB140 scr_redraw();141 #endif142 143 #ifdef CONFIG_SGCN_KBD144 sgcn_grab();145 #endif146 }147 148 /** Return console to userspace149 *150 */151 void arch_release_console(void)152 {153 #ifdef CONFIG_SGCN_KBD154 sgcn_release();155 #endif156 }157 158 136 /** @} 159 137 */
Note:
See TracChangeset
for help on using the changeset viewer.