Add additional debugging for fwohci_arrq_input: no listener conditions

This commit is contained in:
jmc 2002-12-19 02:15:31 +00:00
parent 324c47457d
commit 092fe54e3d

View File

@ -1,4 +1,4 @@
/* $NetBSD: fwohci.c,v 1.67 2002/12/13 07:47:52 jmc Exp $ */
/* $NetBSD: fwohci.c,v 1.68 2002/12/19 02:15:31 jmc Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@ -49,7 +49,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: fwohci.c,v 1.67 2002/12/13 07:47:52 jmc Exp $");
__KERNEL_RCSID(0, "$NetBSD: fwohci.c,v 1.68 2002/12/19 02:15:31 jmc Exp $");
#define FWOHCI_WAIT_DEBUG 1
@ -2197,6 +2197,10 @@ fwohci_arrq_input(struct fwohci_softc *sc, struct fwohci_ctx *fc)
DPRINTFN(1, ("fwohci_arrq_input: no listener: tcode "
"0x%x, addr=0x%04x %08x\n", pkt.fp_tcode, key1,
key2));
DPRINTFN(2, ("fwohci_arrq_input: no listener: hdr[0]: "
"0x%08x, hdr[1]: 0x%08x, hdr[2]: 0x%08x, hdr[3]: "
"0x%08x\n", pkt.fp_hdr[0], pkt.fp_hdr[1],
pkt.fp_hdr[2], pkt.fp_hdr[3]));
}
if (((*pkt.fp_trail & 0x001f0000) >> 16) !=
OHCI_CTXCTL_EVENT_ACK_PENDING)