Source-Changes-HG archive

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

[src/netbsd-1-6]: src/sys/dev Pull up revision 1.158 (requested by gmcgarry i...



details:   https://anonhg.NetBSD.org/src/rev/313e050f8f8b
branches:  netbsd-1-6
changeset: 528064:313e050f8f8b
user:      lukem <lukem%NetBSD.org@localhost>
date:      Mon Jun 24 05:06:27 2002 +0000

description:
Pull up revision 1.158 (requested by gmcgarry in ticket #351):
Back out revision 1.132.  This revision broke binary compatibility with
binaries which were working fine on NetBSD 1.5.  We defer this change
until a longer-term fix is found as explain in the commit message in
revision 1.132.
Further details can be found in PR17159.

diffstat:

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

diffs (33 lines):

diff -r 117ddb8ce186 -r 313e050f8f8b sys/dev/audio.c
--- a/sys/dev/audio.c   Mon Jun 24 04:59:55 2002 +0000
+++ b/sys/dev/audio.c   Mon Jun 24 05:06:27 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: audio.c,v 1.155 2002/03/23 17:17:10 kent Exp $ */
+/*     $NetBSD: audio.c,v 1.155.4.1 2002/06/24 05:06:27 lukem Exp $    */
 
 /*
  * Copyright (c) 1991-1993 Regents of the University of California.
@@ -61,7 +61,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.155 2002/03/23 17:17:10 kent Exp $");
+__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.155.4.1 2002/06/24 05:06:27 lukem Exp $");
 
 #include "audio.h"
 #if NAUDIO > 0
@@ -288,12 +288,12 @@
 
        iclass = oclass = -1;
        sc->sc_inports.index = -1;
-       sc->sc_inports.master = 0;
+       sc->sc_inports.master = -1;
        sc->sc_inports.nports = 0;
        sc->sc_inports.isenum = 0;
        sc->sc_inports.allports = 0;
        sc->sc_outports.index = -1;
-       sc->sc_outports.master = 0;
+       sc->sc_outports.master = -1;
        sc->sc_outports.nports = 0;
        sc->sc_outports.isenum = 0;
        sc->sc_outports.allports = 0;



Home | Main Index | Thread Index | Old Index