Source-Changes-HG archive

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

[src/trunk]: src/sys/dev Back out revision 1.132. This revision broke binary...



details:   https://anonhg.NetBSD.org/src/rev/f7d394170113
branches:  trunk
changeset: 533161:f7d394170113
user:      gmcgarry <gmcgarry%NetBSD.org@localhost>
date:      Sun Jun 23 01:36:07 2002 +0000

description:
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 d863bbcc9b01 -r f7d394170113 sys/dev/audio.c
--- a/sys/dev/audio.c   Sun Jun 23 01:27:52 2002 +0000
+++ b/sys/dev/audio.c   Sun Jun 23 01:36:07 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: audio.c,v 1.157 2002/06/02 02:00:30 gson Exp $ */
+/*     $NetBSD: audio.c,v 1.158 2002/06/23 01:36:07 gmcgarry 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.157 2002/06/02 02:00:30 gson Exp $");
+__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.158 2002/06/23 01:36:07 gmcgarry 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