Source-Changes-HG archive

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

[src/netbsd-1-5]: src/sys/dev/wscons Pull up to 1.5 branch approved by jhawk:



details:   https://anonhg.NetBSD.org/src/rev/8137c79126b9
branches:  netbsd-1-5
changeset: 489425:8137c79126b9
user:      simonb <simonb%NetBSD.org@localhost>
date:      Sun Sep 10 10:47:36 2000 +0000

description:
Pull up to 1.5 branch approved by jhawk:
Rev 1.13:
        In wsdisplay_usl_ioctl2(), use a u_long for the request to be
        passed off to wsdisplay_internal_ioctl() instead of an int.
        With this, the pcvt compat ioctl's work on an Alpha and
        probably other 64 bit archs.
Rev 1.15:
        KNF - variable declarations.

diffstat:

 sys/dev/wscons/wsdisplay_compat_usl.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (24 lines):

diff -r 8b9426d57a1d -r 8137c79126b9 sys/dev/wscons/wsdisplay_compat_usl.c
--- a/sys/dev/wscons/wsdisplay_compat_usl.c     Sat Sep 09 17:30:54 2000 +0000
+++ b/sys/dev/wscons/wsdisplay_compat_usl.c     Sun Sep 10 10:47:36 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: wsdisplay_compat_usl.c,v 1.12 2000/03/23 07:01:47 thorpej Exp $ */
+/* $NetBSD: wsdisplay_compat_usl.c,v 1.12.4.1 2000/09/10 10:47:36 simonb Exp $ */
 
 /*
  * Copyright (c) 1998
@@ -375,11 +375,11 @@
        int flag;
        struct proc *p;
 {
-       int res;
+       int intarg, res;
+       u_long req;
+       void *arg;
        struct usl_syncdata *sd;
-       int req, intarg;
        struct wskbd_bell_data bd;
-       void *arg;
 
        switch (cmd) {
            case VT_SETMODE:



Home | Main Index | Thread Index | Old Index