aboutsummaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorJustin T. Gibbs <gibbs@FreeBSD.org>2005-09-22 05:01:37 +0000
committerJustin T. Gibbs <gibbs@FreeBSD.org>2005-09-22 05:01:37 +0000
commit16346ae5f5eeef68943d4e7a21dcebb7b9face9f (patch)
tree0a020a4a055195f1bfedfa6542bae3c8047bc1c9 /sys/dev
parent6bdc5bdf68ecadd09662a26fda2a5d5613226891 (diff)
Notes
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/aic7xxx/aic79xx_osm.c3
-rw-r--r--sys/dev/aic7xxx/aic7xxx_osm.c3
2 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/aic7xxx/aic79xx_osm.c b/sys/dev/aic7xxx/aic79xx_osm.c
index 1971c0b6eb7c..d8f189093830 100644
--- a/sys/dev/aic7xxx/aic79xx_osm.c
+++ b/sys/dev/aic7xxx/aic79xx_osm.c
@@ -281,7 +281,8 @@ ahd_done(struct ahd_softc *ahd, struct scb *scb)
LIST_FOREACH(list_scb,
&ahd->pending_scbs, pending_links) {
- aic_scb_timer_reset(scb, aic_get_timeout(scb));
+ aic_scb_timer_reset(list_scb,
+ aic_get_timeout(scb));
}
ahd_print_path(ahd, scb);
diff --git a/sys/dev/aic7xxx/aic7xxx_osm.c b/sys/dev/aic7xxx/aic7xxx_osm.c
index a1b65bb860f3..638a56a2e419 100644
--- a/sys/dev/aic7xxx/aic7xxx_osm.c
+++ b/sys/dev/aic7xxx/aic7xxx_osm.c
@@ -396,7 +396,8 @@ ahc_done(struct ahc_softc *ahc, struct scb *scb)
LIST_FOREACH(list_scb, &ahc->pending_scbs,
pending_links) {
- aic_scb_timer_reset(scb, aic_get_timeout(scb));
+ aic_scb_timer_reset(list_scb,
+ aic_get_timeout(scb));
}
ahc_print_path(ahc, scb);