diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2002-03-04 23:32:53 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2002-03-04 23:32:53 +0000 |
commit | f8e7121c40b6b20e97d3a646f4f02dd127ee1541 (patch) | |
tree | 1172951c8b55d7205e0075b33c6ccdd22c0d1173 /sys/dev/sbus | |
parent | 7276ea733af53721bb4d1169afa8d5351403d39d (diff) |
Disable the wscons burner functionality... I'm not in the mood to debug it right now.
Diffstat (limited to 'sys/dev/sbus')
-rw-r--r-- | sys/dev/sbus/cgsix.c | 4 | ||||
-rw-r--r-- | sys/dev/sbus/cgthree.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/sbus/cgsix.c b/sys/dev/sbus/cgsix.c index 6fd559d1425..cd79b118bc5 100644 --- a/sys/dev/sbus/cgsix.c +++ b/sys/dev/sbus/cgsix.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cgsix.c,v 1.13 2002/02/24 18:51:29 jason Exp $ */ +/* $OpenBSD: cgsix.c,v 1.14 2002/03/04 23:32:52 jason Exp $ */ /* * Copyright (c) 2001 Jason L. Wright (jason@thought.net) @@ -245,7 +245,7 @@ struct wsdisplay_accessops cgsix_accessops = { NULL, /* load_font */ NULL, /* scrollback */ NULL, /* getchar */ - cgsix_burner, + NULL, /* burner */ }; int cgsixmatch __P((struct device *, void *, void *)); diff --git a/sys/dev/sbus/cgthree.c b/sys/dev/sbus/cgthree.c index f254a57af67..98316a9dd2a 100644 --- a/sys/dev/sbus/cgthree.c +++ b/sys/dev/sbus/cgthree.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cgthree.c,v 1.10 2002/02/24 18:51:29 jason Exp $ */ +/* $OpenBSD: cgthree.c,v 1.11 2002/03/04 23:32:52 jason Exp $ */ /* * Copyright (c) 2001 Jason L. Wright (jason@thought.net) @@ -182,7 +182,7 @@ struct wsdisplay_accessops cgthree_accessops = { NULL, /* load_font */ NULL, /* scrollback */ NULL, /* getchar */ - cgthree_burner, + NULL, /* burner */ }; int cgthreematch __P((struct device *, void *, void *)); |