aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/aac
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2009-10-29 17:14:18 +0000
committerEd Maste <emaste@FreeBSD.org>2009-10-29 17:14:18 +0000
commitc89d07b9f5394a001c4fe38f992ab9464f49b956 (patch)
tree0f88ebc75f52b92f9f01d4dec277b22d4eb48c88 /sys/dev/aac
parent6652a11014aa7c4238fdf0fdf358ddb053afa510 (diff)
downloadsrc-c89d07b9f5394a001c4fe38f992ab9464f49b956.tar.gz
src-c89d07b9f5394a001c4fe38f992ab9464f49b956.zip
Rename aac_srb32 to aac_srb, to match Adaptec's vendor driver.
Notes
Notes: svn path=/head/; revision=198617
Diffstat (limited to 'sys/dev/aac')
-rw-r--r--sys/dev/aac/aac_cam.c6
-rw-r--r--sys/dev/aac/aacreg.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/aac/aac_cam.c b/sys/dev/aac/aac_cam.c
index ddf19f335b82..5755f0d611a2 100644
--- a/sys/dev/aac/aac_cam.c
+++ b/sys/dev/aac/aac_cam.c
@@ -211,7 +211,7 @@ aac_cam_action(struct cam_sim *sim, union ccb *ccb)
{
struct aac_cam *camsc;
struct aac_softc *sc;
- struct aac_srb32 *srb;
+ struct aac_srb *srb;
struct aac_fib *fib;
struct aac_command *cm;
@@ -351,7 +351,7 @@ aac_cam_action(struct cam_sim *sim, union ccb *ccb)
}
fib = cm->cm_fib;
- srb = (struct aac_srb32 *)&fib->data[0];
+ srb = (struct aac_srb *)&fib->data[0];
cm->cm_datalen = 0;
switch (ccb->ccb_h.flags & CAM_DIR_MASK) {
@@ -459,7 +459,7 @@ aac_cam_action(struct cam_sim *sim, union ccb *ccb)
AAC_FIBSTATE_REXPECTED |
AAC_FIBSTATE_NORM;
fib->Header.Size = sizeof(struct aac_fib_header) +
- sizeof(struct aac_srb32);
+ sizeof(struct aac_srb);
aac_enqueue_ready(cm);
aac_startio(cm->cm_sc);
diff --git a/sys/dev/aac/aacreg.h b/sys/dev/aac/aacreg.h
index db96ff206d94..d45634a9cb5f 100644
--- a/sys/dev/aac/aacreg.h
+++ b/sys/dev/aac/aacreg.h
@@ -1363,7 +1363,7 @@ struct aac_close_command {
/*
* SCSI Passthrough structures
*/
-struct aac_srb32 {
+struct aac_srb {
u_int32_t function;
u_int32_t bus;
u_int32_t target;