aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/firewire
diff options
context:
space:
mode:
authorMartin Blapp <mbr@FreeBSD.org>2010-01-07 21:01:37 +0000
committerMartin Blapp <mbr@FreeBSD.org>2010-01-07 21:01:37 +0000
commitc2ede4b379d8fa04de02c36201538fd610763299 (patch)
tree5d5dd29f525602a794f28a860b157a27bc19c71a /sys/dev/firewire
parent017b01f6628c01be1ada0397f3cae40670936b1a (diff)
Notes
Diffstat (limited to 'sys/dev/firewire')
-rw-r--r--sys/dev/firewire/sbp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/firewire/sbp.c b/sys/dev/firewire/sbp.c
index 02ceb784e987..0b9d1fa96e02 100644
--- a/sys/dev/firewire/sbp.c
+++ b/sys/dev/firewire/sbp.c
@@ -1573,7 +1573,7 @@ END_DEBUG
bcopy(&sbp_cmd_status->s_keydep[0],
&sense->sense_key_spec[0], 3);
- ocb->ccb->csio.scsi_status = sbp_cmd_status->status;;
+ ocb->ccb->csio.scsi_status = sbp_cmd_status->status;
ocb->ccb->ccb_h.status = CAM_SCSI_STATUS_ERROR
| CAM_AUTOSNS_VALID;
/*
@@ -2148,7 +2148,7 @@ sbp_free_target(struct sbp_target *target)
}
STAILQ_INIT(&target->xferlist);
free(target->luns, M_SBP);
- target->num_lun = 0;;
+ target->num_lun = 0;
target->luns = NULL;
target->fwdev = NULL;
}
@@ -2318,7 +2318,7 @@ sbp_timeout(void *arg)
sbp_cam_detach_target(target);
if (target->luns != NULL)
free(target->luns, M_SBP);
- target->num_lun = 0;;
+ target->num_lun = 0;
target->luns = NULL;
target->fwdev = NULL;
#endif