aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/dpt
diff options
context:
space:
mode:
authorScott Long <scottl@FreeBSD.org>2007-04-15 08:49:19 +0000
committerScott Long <scottl@FreeBSD.org>2007-04-15 08:49:19 +0000
commit2b83592fdcb9e7c201677f3605b9e8738a6b0737 (patch)
tree010146772b36d16e6f98671b4bed7ce094acd633 /sys/dev/dpt
parent4f450d951a7b14cda1b359646ec580a82b4f012e (diff)
Notes
Diffstat (limited to 'sys/dev/dpt')
-rw-r--r--sys/dev/dpt/dpt_scsi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/dpt/dpt_scsi.c b/sys/dev/dpt/dpt_scsi.c
index 9238292cea83a..276f0c9b0601e 100644
--- a/sys/dev/dpt/dpt_scsi.c
+++ b/sys/dev/dpt/dpt_scsi.c
@@ -1566,7 +1566,8 @@ dpt_attach(dpt_softc_t *dpt)
* Construct our SIM entry
*/
dpt->sims[i] = cam_sim_alloc(dpt_action, dpt_poll, "dpt",
- dpt, dpt->unit, /*untagged*/2,
+ dpt, dpt->unit, &Giant,
+ /*untagged*/2,
/*tagged*/dpt->max_dccbs, devq);
if (dpt->sims[i] == NULL) {
if (i == 0)