diff options
Diffstat (limited to 'sys/dev/syscons/syscons.c')
-rw-r--r-- | sys/dev/syscons/syscons.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sys/dev/syscons/syscons.c b/sys/dev/syscons/syscons.c index 61b6830..df527fc 100644 --- a/sys/dev/syscons/syscons.c +++ b/sys/dev/syscons/syscons.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: syscons.c,v 1.304 1999/05/30 16:51:42 phk Exp $ + * $Id: syscons.c,v 1.305 1999/05/31 11:25:13 phk Exp $ */ #include "sc.h" @@ -37,7 +37,6 @@ #include "opt_devfs.h" #ifdef __i386__ #include "opt_vesa.h" -#include "opt_vm86.h" #endif #include "opt_syscons.h" @@ -571,7 +570,7 @@ int sc_attach_unit(int unit, int flags) { scr_stat *scp; -#if defined(VESA) && defined(VM86) +#if defined(VESA) video_info_t info; #endif #ifdef DEVFS @@ -596,7 +595,7 @@ sc_attach_unit(int unit, int flags) /* initialize history buffer & pointers */ sc_alloc_history_buffer(scp, sc_history_size, 0, FALSE); -#if defined(VESA) && defined(VM86) +#if defined(VESA) if ((sc_flags & VESA800X600) && ((*vidsw[scp->ad]->get_info)(scp->adp, M_VESA_800x600, &info) == 0)) { #if NSPLASH > 0 @@ -610,7 +609,7 @@ sc_attach_unit(int unit, int flags) splash_init(scp->adp, scsplash_callback); #endif } -#endif /* VESA && VM86 */ +#endif /* VESA */ /* initialize cursor stuff */ if (!ISGRAPHSC(scp)) |