summaryrefslogtreecommitdiff
path: root/sys/dev/firewire
diff options
context:
space:
mode:
authorHidetoshi Shimokawa <simokawa@FreeBSD.org>2003-10-06 05:40:47 +0000
committerHidetoshi Shimokawa <simokawa@FreeBSD.org>2003-10-06 05:40:47 +0000
commitcb987496a3ede9ed23bb0373fec7cbc76451c6d9 (patch)
treecd5e1fa9558f17873d3f219287c393cc1bdda54c /sys/dev/firewire
parent67c976c18e75fbe4e99ea603f0790942a913855c (diff)
Notes
Diffstat (limited to 'sys/dev/firewire')
-rw-r--r--sys/dev/firewire/sbp.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/dev/firewire/sbp.c b/sys/dev/firewire/sbp.c
index 3bcdb0b43ec2..b857fb020859 100644
--- a/sys/dev/firewire/sbp.c
+++ b/sys/dev/firewire/sbp.c
@@ -2382,9 +2382,17 @@ END_DEBUG
static void
sbp_poll(struct cam_sim *sim)
{
- /* should call fwohci_intr? */
+ struct sbp_softc *sbp;
+ struct firewire_comm *fc;
+
+ sbp = (struct sbp_softc *)sim->softc;
+ fc = sbp->fd.fc;
+
+ fc->poll(fc, 0, -1);
+
return;
}
+
static struct sbp_ocb *
sbp_dequeue_ocb(struct sbp_dev *sdev, struct sbp_status *sbp_status)
{