mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Comment out verbose debug messages.
This commit is contained in:
parent
19b7ffd1b8
commit
1a75370022
2 changed files with 4 additions and 0 deletions
|
|
@ -1772,8 +1772,10 @@ fw_rcv(struct firewire_comm *fc, struct iovec *vec, int nvec, u_int sub, u_int s
|
|||
fw_xfer_done(xfer);
|
||||
break;
|
||||
case FWXF_START:
|
||||
#if 0
|
||||
if (firewire_debug)
|
||||
printf("not sent yet tl=%x\n", xfer->tl);
|
||||
#endif
|
||||
break;
|
||||
default:
|
||||
printf("unexpected state %d\n", xfer->state);
|
||||
|
|
|
|||
|
|
@ -1110,8 +1110,10 @@ fwohci_txd(struct fwohci_softc *sc, struct fwohci_dbch *dbch)
|
|||
if (tr->xfer != NULL) {
|
||||
xfer = tr->xfer;
|
||||
if (xfer->state == FWXF_RCVD) {
|
||||
#if 0
|
||||
if (firewire_debug)
|
||||
printf("already rcvd\n");
|
||||
#endif
|
||||
fw_xfer_done(xfer);
|
||||
} else {
|
||||
xfer->state = FWXF_SENT;
|
||||
|
|
|
|||
Loading…
Reference in a new issue