summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2006-03-14 11:57:22 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2006-03-14 11:57:22 +0000
commitc818fa3b7823aa60ba30bf7a28e7df2b2b3c4c7b (patch)
tree38f4cb95b29f4037b1c9a8d6835d5a3a3460ce26 /sys/dev
parent5347b4f236a789a1ecca1df5c11e5a470daa3f7e (diff)
knf
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/ic/ami.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/sys/dev/ic/ami.c b/sys/dev/ic/ami.c
index feee64e0d5b..0adeeb60554 100644
--- a/sys/dev/ic/ami.c
+++ b/sys/dev/ic/ami.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ami.c,v 1.112 2006/03/14 11:44:08 dlg Exp $ */
+/* $OpenBSD: ami.c,v 1.113 2006/03/14 11:57:21 dlg Exp $ */
/*
* Copyright (c) 2001 Michael Shalayeff
@@ -1441,38 +1441,38 @@ ami_scsi_cmd(struct scsi_xfer *xs)
case REQUEST_SENSE:
AMI_DPRINTF(AMI_D_CMD, ("REQUEST SENSE tgt %d ", target));
- bzero(&sd, sizeof sd);
+ bzero(&sd, sizeof(sd));
sd.error_code = 0x70;
sd.segment = 0;
sd.flags = SKEY_NO_SENSE;
*(u_int32_t*)sd.info = htole32(0);
sd.extra_len = 0;
- ami_copy_internal_data(xs, &sd, sizeof sd);
+ ami_copy_internal_data(xs, &sd, sizeof(sd));
scsi_done(xs);
return (COMPLETE);
case INQUIRY:
AMI_DPRINTF(AMI_D_CMD, ("INQUIRY tgt %d ", target));
- bzero(&inq, sizeof inq);
+ bzero(&inq, sizeof(inq));
inq.device = T_DIRECT;
inq.dev_qual2 = 0;
inq.version = 2;
inq.response_format = 2;
inq.additional_length = 32;
- strlcpy(inq.vendor, "AMI ", sizeof inq.vendor);
- snprintf(inq.product, sizeof inq.product, "Host drive #%02d",
- target);
- strlcpy(inq.revision, " ", sizeof inq.revision);
- ami_copy_internal_data(xs, &inq, sizeof inq);
+ strlcpy(inq.vendor, "AMI ", sizeof(inq.vendor));
+ snprintf(inq.product, sizeof(inq.product),
+ "Host drive #%02d", target);
+ strlcpy(inq.revision, " ", sizeof(inq.revision));
+ ami_copy_internal_data(xs, &inq, sizeof(inq));
scsi_done(xs);
return (COMPLETE);
case READ_CAPACITY:
AMI_DPRINTF(AMI_D_CMD, ("READ CAPACITY tgt %d ", target));
- bzero(&rcd, sizeof rcd);
+ bzero(&rcd, sizeof(rcd));
_lto4b(sc->sc_hdr[target].hd_size - 1, rcd.addr);
_lto4b(AMI_SECTOR_SIZE, rcd.length);
- ami_copy_internal_data(xs, &rcd, sizeof rcd);
+ ami_copy_internal_data(xs, &rcd, sizeof(rcd));
scsi_done(xs);
return (COMPLETE);