summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorkato <kato@FreeBSD.org>1999-06-03 13:50:54 +0000
committerkato <kato@FreeBSD.org>1999-06-03 13:50:54 +0000
commitaeb465544c2ff80801ecbfbde0e71b588a8d8897 (patch)
tree4bf9101d0f1db78d2744776cba9d7ea12767995d /sys
parentd6a048fdfe640a6182d7be83858c25df91e8450c (diff)
downloadFreeBSD-src-aeb465544c2ff80801ecbfbde0e71b588a8d8897.zip
FreeBSD-src-aeb465544c2ff80801ecbfbde0e71b588a8d8897.tar.gz
Remove VM86 option.
Diffstat (limited to 'sys')
-rw-r--r--sys/pc98/pc98/syscons.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/sys/pc98/pc98/syscons.c b/sys/pc98/pc98/syscons.c
index 63c3978..c7b7250 100644
--- a/sys/pc98/pc98/syscons.c
+++ b/sys/pc98/pc98/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.119 1999/05/30 16:53:24 phk Exp $
+ * $Id: syscons.c,v 1.120 1999/05/31 11:28:41 phk Exp $
*/
#include "sc.h"
@@ -33,7 +33,6 @@
#include "apm.h"
#include "opt_ddb.h"
#include "opt_devfs.h"
-#include "opt_vm86.h"
#include "opt_syscons.h"
#if NSC > 0
@@ -619,7 +618,7 @@ static int
scattach(device_t dev)
{
scr_stat *scp;
-#if defined(VESA) && defined(VM86)
+#if defined(VESA)
video_info_t info;
#endif
dev_t cdev = makedev(CDEV_MAJOR, 0);
@@ -651,7 +650,7 @@ scattach(device_t dev)
/* 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
@@ -665,7 +664,7 @@ scattach(device_t dev)
splash_init(scp->adp, scsplash_callback);
#endif
}
-#endif /* VESA && VM86 */
+#endif /* VESA */
/* initialize cursor stuff */
if (!ISGRAPHSC(scp))
OpenPOWER on IntegriCloud