Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/hp300/dev Make these build again after buf.h/diskso...



details:   https://anonhg.NetBSD.org/src/rev/4e2f29866419
branches:  trunk
changeset: 481473:4e2f29866419
user:      kleink <kleink%NetBSD.org@localhost>
date:      Mon Jan 31 19:04:52 2000 +0000

description:
Make these build again after buf.h/disksort changes.

diffstat:

 sys/arch/hp300/dev/rd.c |  4 ++--
 sys/arch/hp300/dev/sd.c |  4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 4d3d72dfb910 -r 4e2f29866419 sys/arch/hp300/dev/rd.c
--- a/sys/arch/hp300/dev/rd.c   Mon Jan 31 18:36:12 2000 +0000
+++ b/sys/arch/hp300/dev/rd.c   Mon Jan 31 19:04:52 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rd.c,v 1.37 2000/01/21 23:29:03 thorpej Exp $  */
+/*     $NetBSD: rd.c,v 1.38 2000/01/31 19:04:52 kleink Exp $   */
 
 /*-
  * Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
@@ -758,7 +758,7 @@
        rs->sc_active = 0;
        if (rs->sc_flags & RDF_WANTED) {
                rs->sc_flags &= ~RDF_WANTED;
-               wakeup((caddr_t)dp);
+               wakeup((caddr_t)&rs->sc_tab);
        }
        return (NULL);
 }
diff -r 4d3d72dfb910 -r 4e2f29866419 sys/arch/hp300/dev/sd.c
--- a/sys/arch/hp300/dev/sd.c   Mon Jan 31 18:36:12 2000 +0000
+++ b/sys/arch/hp300/dev/sd.c   Mon Jan 31 19:04:52 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sd.c,v 1.37 2000/01/21 23:29:04 thorpej Exp $  */
+/*     $NetBSD: sd.c,v 1.38 2000/01/31 19:04:53 kleink Exp $   */
 
 /*-
  * Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
@@ -871,7 +871,7 @@
                sc->sc_active = 0;
                if (sc->sc_flags & SDF_WANTED) {
                        sc->sc_flags &= ~SDF_WANTED;
-                       wakeup((caddr_t)dp);
+                       wakeup((caddr_t)&sc->sc_tab);
                }
        }
 }



Home | Main Index | Thread Index | Old Index