Module Name: src Committed By: skrll Date: Tue May 10 21:13:48 UTC 2016
Modified Files: src/sys/dev/ic: sl811hs.c Log Message: More debug To generate a diff of this commit: cvs rdiff -u -r1.58 -r1.59 src/sys/dev/ic/sl811hs.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/dev/ic/sl811hs.c diff -u src/sys/dev/ic/sl811hs.c:1.58 src/sys/dev/ic/sl811hs.c:1.59 --- src/sys/dev/ic/sl811hs.c:1.58 Sun May 8 07:48:24 2016 +++ src/sys/dev/ic/sl811hs.c Tue May 10 21:13:48 2016 @@ -1,4 +1,4 @@ -/* $NetBSD: sl811hs.c,v 1.58 2016/05/08 07:48:24 skrll Exp $ */ +/* $NetBSD: sl811hs.c,v 1.59 2016/05/10 21:13:48 skrll Exp $ */ /* * Not (c) 2007 Matthew Orgass @@ -68,7 +68,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: sl811hs.c,v 1.58 2016/05/08 07:48:24 skrll Exp $"); +__KERNEL_RCSID(0, "$NetBSD: sl811hs.c,v 1.59 2016/05/10 21:13:48 skrll Exp $"); #include "opt_slhci.h" @@ -1398,6 +1398,7 @@ slhci_mem_use(struct usbd_bus *bus, int void slhci_reset_entry(void *arg) { + SLHCIHIST_FUNC(); SLHCIHIST_CALLED(); struct slhci_softc *sc = arg; mutex_enter(&sc->sc_intr_lock); @@ -2492,12 +2493,14 @@ slhci_callback_schedule(struct slhci_sof static void slhci_do_callback_schedule(struct slhci_softc *sc) { + SLHCIHIST_FUNC(); SLHCIHIST_CALLED(); struct slhci_transfers *t; t = &sc->sc_transfers; KASSERT(mutex_owned(&sc->sc_intr_lock)); + DLOG(D_MSG, "flags %#x", t->flags, 0, 0, 0); if (!(t->flags & F_CALLBACK)) { t->flags |= F_CALLBACK; softint_schedule(sc->sc_cb_softintr);