diff options
author | Alexander Yurchenko <grange@cvs.openbsd.org> | 2009-03-19 16:07:15 +0000 |
---|---|---|
committer | Alexander Yurchenko <grange@cvs.openbsd.org> | 2009-03-19 16:07:15 +0000 |
commit | d33b521bf262a622395a652449ec014f463f9224 (patch) | |
tree | fecd14fb68a9aa9921bcab44a40022a42f3c2bcc /sys/dev/pci/ips.c | |
parent | e927a6e715b334a50f4bbfe77af4e56ad57baae2 (diff) |
Unify command id printing.
Diffstat (limited to 'sys/dev/pci/ips.c')
-rw-r--r-- | sys/dev/pci/ips.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sys/dev/pci/ips.c b/sys/dev/pci/ips.c index 2d4730e794a..2f7db15cf31 100644 --- a/sys/dev/pci/ips.c +++ b/sys/dev/pci/ips.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ips.c,v 1.75 2009/03/19 13:25:18 grange Exp $ */ +/* $OpenBSD: ips.c,v 1.76 2009/03/19 16:07:14 grange Exp $ */ /* * Copyright (c) 2006, 2007, 2009 Alexander Yurchenko <grange@openbsd.org> @@ -1658,9 +1658,10 @@ ips_intr(void *arg) ccb = &sc->sc_ccb[id]; if (ccb->c_state != IPS_CCB_QUEUED) { - DPRINTF(IPS_D_ERR, ("%s: ips_intr: cmd %d not queued, " - "state %d, status 0x%08x\n", sc->sc_dev.dv_xname, - ccb->c_id, ccb->c_state, status)); + DPRINTF(IPS_D_ERR, ("%s: ips_intr: cmd 0x%02x not " + "queued, state %d, status 0x%08x\n", + sc->sc_dev.dv_xname, ccb->c_id, ccb->c_state, + status)); continue; } |