diff options
| author | Hidetoshi Shimokawa <simokawa@FreeBSD.org> | 2003-06-03 23:01:43 +0000 |
|---|---|---|
| committer | Hidetoshi Shimokawa <simokawa@FreeBSD.org> | 2003-06-03 23:01:43 +0000 |
| commit | de7f8045e07ccd1b9f8f2c70fc69f0d3586b6ce0 (patch) | |
| tree | 04d4bf364bb7037d52d12514fd6e10f676030df6 | |
| parent | df7898b89590cf2c70e91e40dcf3bfdf2cb1166e (diff) | |
Notes
| -rw-r--r-- | sys/dev/firewire/sbp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/firewire/sbp.c b/sys/dev/firewire/sbp.c index 4afd9117c500..7bb83706d721 100644 --- a/sys/dev/firewire/sbp.c +++ b/sys/dev/firewire/sbp.c @@ -1090,7 +1090,7 @@ END_DEBUG xfer = sbp_write_cmd(sdev, FWTCODE_WREQQ, 0x04); if (xfer == NULL) return; - if (sdev->status == SBP_DEV_ATTACHED) + if (sdev->status == SBP_DEV_ATTACHED || sdev->status == SBP_DEV_PROBE) xfer->act.hand = sbp_agent_reset_callback; else xfer->act.hand = sbp_do_attach; |
