summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorAaron Campbell <aaron@cvs.openbsd.org>2001-03-19 00:18:06 +0000
committerAaron Campbell <aaron@cvs.openbsd.org>2001-03-19 00:18:06 +0000
commit9e172bde7efea4ce911c21bd0af947712573b34b (patch)
treed56541a595fc27d036ad34ab645ced8b458ca4ce /sys
parent08e936ba06f336988b41f4cd5a04479655d34ab3 (diff)
Placeholder for a tga_scrollback function, although this will probably
never exist (at some point we'll want a more device-independent way to do scrollback, possibly even with the already-existing msgbuf facilities?)
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/pci/tga.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/pci/tga.c b/sys/dev/pci/tga.c
index 3f0e5e3be8a..b1c1847d31e 100644
--- a/sys/dev/pci/tga.c
+++ b/sys/dev/pci/tga.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tga.c,v 1.5 2001/03/18 04:37:21 nate Exp $ */
+/* $OpenBSD: tga.c,v 1.6 2001/03/19 00:18:05 aaron Exp $ */
/* $NetBSD: tga.c,v 1.31 2001/02/11 19:34:58 nathanw Exp $ */
/*
@@ -154,7 +154,8 @@ struct wsdisplay_accessops tga_accessops = {
tga_alloc_screen,
tga_free_screen,
tga_show_screen,
- 0 /* load_font */
+ NULL, /* load_font */
+ NULL /* scrollback */
};
void tga_blank __P((struct tga_devconfig *));