Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/dev/usb/uhid.c,v rcsdiff: /ftp/cvs/cvsroot/src/sys/dev/usb/uhid.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.42.2.11 retrieving revision 1.42.2.12 diff -u -p -r1.42.2.11 -r1.42.2.12 --- src/sys/dev/usb/uhid.c 2002/11/11 22:12:52 1.42.2.11 +++ src/sys/dev/usb/uhid.c 2002/12/11 06:38:51 1.42.2.12 @@ -1,4 +1,4 @@ -/* $NetBSD: uhid.c,v 1.42.2.11 2002/11/11 22:12:52 nathanw Exp $ */ +/* $NetBSD: uhid.c,v 1.42.2.12 2002/12/11 06:38:51 thorpej Exp $ */ /* * Copyright (c) 1998 The NetBSD Foundation, Inc. @@ -42,7 +42,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: uhid.c,v 1.42.2.11 2002/11/11 22:12:52 nathanw Exp $"); +__KERNEL_RCSID(0, "$NetBSD: uhid.c,v 1.42.2.12 2002/12/11 06:38:51 thorpej Exp $"); #include #include @@ -573,7 +573,7 @@ filt_uhidrdetach(struct knote *kn) int s; s = splusb(); - SLIST_REMOVE(&sc->sc_rsel.si_klist, kn, knote, kn_selnext); + SLIST_REMOVE(&sc->sc_rsel.sel_klist, kn, knote, kn_selnext); splx(s); } @@ -606,12 +606,12 @@ uhidkqfilter(dev_t dev, struct knote *kn switch (kn->kn_filter) { case EVFILT_READ: - klist = &sc->sc_rsel.si_klist; + klist = &sc->sc_rsel.sel_klist; kn->kn_fop = &uhidread_filtops; break; case EVFILT_WRITE: - klist = &sc->sc_rsel.si_klist; + klist = &sc->sc_rsel.sel_klist; kn->kn_fop = &uhid_seltrue_filtops; break;