diff options
-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 ea3862dcaee..3c1e2ee940a 100644 --- a/sys/dev/sbus/cgsix.c +++ b/sys/dev/sbus/cgsix.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cgsix.c,v 1.19 2002/04/08 17:49:42 jason Exp $ */ +/* $OpenBSD: cgsix.c,v 1.20 2002/05/21 20:25:28 jason Exp $ */ /* * Copyright (c) 2001 Jason L. Wright (jason@thought.net) @@ -247,7 +247,7 @@ struct wsdisplay_accessops cgsix_accessops = { NULL, /* load_font */ NULL, /* scrollback */ NULL, /* getchar */ - NULL, /* burner */ + cgsix_burner, }; int cgsixmatch(struct device *, void *, void *); diff --git a/sys/dev/sbus/cgthree.c b/sys/dev/sbus/cgthree.c index ba26b2e79fc..8e82e22c860 100644 --- a/sys/dev/sbus/cgthree.c +++ b/sys/dev/sbus/cgthree.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cgthree.c,v 1.15 2002/04/08 17:49:42 jason Exp $ */ +/* $OpenBSD: cgthree.c,v 1.16 2002/05/21 20:25:28 jason Exp $ */ /* * Copyright (c) 2001 Jason L. Wright (jason@thought.net) @@ -187,7 +187,7 @@ struct wsdisplay_accessops cgthree_accessops = { NULL, /* load_font */ NULL, /* scrollback */ NULL, /* getchar */ - NULL, /* burner */ + cgthree_burner, }; int cgthreematch(struct device *, void *, void *); |