Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/kqueue]: src/sys/arch/hp300/dev make compile
details: https://anonhg.NetBSD.org/src/rev/69e18e2783a2
branches: kqueue
changeset: 512481:69e18e2783a2
user: jdolecek <jdolecek%NetBSD.org@localhost>
date: Tue Jun 18 20:43:44 2002 +0000
description:
make compile
diffstat:
sys/arch/hp300/dev/hil.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diffs (40 lines):
diff -r f5fbc7c5b028 -r 69e18e2783a2 sys/arch/hp300/dev/hil.c
--- a/sys/arch/hp300/dev/hil.c Tue Jun 18 20:06:12 2002 +0000
+++ b/sys/arch/hp300/dev/hil.c Tue Jun 18 20:43:44 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: hil.c,v 1.42.2.4 2002/03/16 15:57:33 jdolecek Exp $ */
+/* $NetBSD: hil.c,v 1.42.2.5 2002/06/18 20:43:44 jdolecek Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@@ -843,8 +843,8 @@
filt_hilrdetach(struct knote *kn)
{
dev_t dev = (u_long) kn->kn_hook;
- struct hil_softc *hilp = &hil_softc[HILLOOP(dev)];
- dptr = &hilp->hl_device[HILUNIT(dev)];
+ struct hil_softc *hilp = hil_cd.cd_devs[HILLOOP(dev)];
+ struct hilloopdev *dptr = &hilp->hl_device[HILUNIT(dev)];
int s;
s = splhil();
@@ -857,8 +857,8 @@
{
dev_t dev = (u_long) kn->kn_hook;
int device = HILUNIT(dev);
- struct hil_softc *hilp = &hil_softc[HILLOOP(dev)];
- dptr = &hilp->hl_device[device];
+ struct hil_softc *hilp = hil_cd.cd_devs[HILLOOP(dev)];
+ struct hilloopdev *dptr = &hilp->hl_device[device];
struct hiliqueue *qp;
int mask;
@@ -913,7 +913,7 @@
int
hilkqfilter(dev_t dev, struct knote *kn)
{
- struct hil_softc *hilp = &hil_softc[HILLOOP(dev)];
+ struct hil_softc *hilp = hil_cd.cd_devs[HILLOOP(dev)];
struct hilloopdev *dptr = &hilp->hl_device[HILUNIT(dev)];
struct klist *klist;
int s;
Home |
Main Index |
Thread Index |
Old Index