Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4108 → Rev 4109

/trunk/kernel/arch/mips32/src/console.c
26,7 → 26,7
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup mips32
/** @addtogroup mips32
* @{
*/
/** @file
33,9 → 33,6
*/
 
#include <console/console.h>
#include <arch/console.h>
#include <arch/drivers/serial.h>
#include <arch/drivers/msim.h>
#include <genarch/fb/fb.h>
 
/** Acquire console back for kernel
46,7 → 43,6
#ifdef CONFIG_FB
fb_redraw();
#endif
msim_kbd_grab();
}
 
/** Return console to userspace
54,7 → 50,6
*/
void arch_release_console(void)
{
msim_kbd_release();
}
 
/** @}