blob: 2ade5a311768e0ebbf0f1796172b62a20049db6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/* $Id: sgicons.c,v 1.10 1998/08/25 09:18:58 ralf Exp $
*
* sgicons.c: Setting up and registering console I/O on the SGI.
*
* Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
* Copyright (C) 1997 Miguel de Icaza (miguel@nuclecu.unam.mx)
*
* This implement a virtual console interface.
*/
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/errno.h>
#include <asm/uaccess.h>
#include "gconsole.h"
/* To make psaux code cleaner */
unsigned char aux_device_present = 0xaa;
/* This is the system graphics console (the first adapter found) */
struct console_ops *gconsole = 0;
struct console_ops *real_gconsole = 0;
void
enable_gconsole (void)
{
if (!gconsole)
gconsole = real_gconsole;
}
void
disable_gconsole (void)
{
if (gconsole){
real_gconsole = gconsole;
gconsole = 0;
}
}
void
register_gconsole (struct console_ops *gc)
{
if (gconsole)
return;
gconsole = gc;
}
|