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