Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-2-0]: src/sys/dev/ic Pull up revision 1.73 (requested by recht in...



details:   https://anonhg.NetBSD.org/src/rev/098bbc51b00d
branches:  netbsd-2-0
changeset: 561311:098bbc51b00d
user:      tron <tron%NetBSD.org@localhost>
date:      Mon Jun 07 09:47:25 2004 +0000

description:
Pull up revision 1.73 (requested by recht in ticket #451):
move scroll function definition last.

diffstat:

 sys/dev/ic/vga.c |  19 ++++++++++---------
 1 files changed, 10 insertions(+), 9 deletions(-)

diffs (45 lines):

diff -r 02c0284c4158 -r 098bbc51b00d sys/dev/ic/vga.c
--- a/sys/dev/ic/vga.c  Mon Jun 07 09:47:19 2004 +0000
+++ b/sys/dev/ic/vga.c  Mon Jun 07 09:47:25 2004 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: vga.c,v 1.71.4.1 2004/06/07 09:37:51 tron Exp $ */
+/* $NetBSD: vga.c,v 1.71.4.2 2004/06/07 09:47:25 tron Exp $ */
 
 /*
  * Copyright (c) 1995, 1996 Carnegie-Mellon University.
@@ -28,7 +28,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vga.c,v 1.71.4.1 2004/06/07 09:37:51 tron Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vga.c,v 1.71.4.2 2004/06/07 09:47:25 tron Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -273,18 +273,19 @@
        vga_free_screen,
        vga_show_screen,
        vga_load_font,
+       NULL,
+#ifdef WSDISPLAY_CHARFUNCS
+       vga_getwschar,
+       vga_putwschar,
+#else /* WSDISPLAY_CHARFUNCS */
+       NULL,
+       NULL,
+#endif /* WSDISPLAY_CHARFUNCS */
 #ifdef WSDISPLAY_SCROLLSUPPORT
        vga_scroll,
 #else
        NULL,
 #endif
-#ifdef WSDISPLAY_CHARFUNCS
-       vga_getwschar,
-       vga_putwschar
-#else /* WSDISPLAY_CHARFUNCS */
-       NULL,
-       NULL
-#endif /* WSDISPLAY_CHARFUNCS */
 };
 
 /*



Home | Main Index | Thread Index | Old Index