diff options
author | Ed Lin <ed.lin@promise.com> | 2006-12-04 17:49:28 -0800 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.il.steeleye.com> | 2006-12-05 11:31:43 -0600 |
commit | 4eea9dc45fa7feb42e6dce32d94ea9ea4d64e40b (patch) | |
tree | d1c99f57d68e2ab961984db08edcbdc14b640430 /drivers/scsi/stex.c | |
parent | b4b8bed12345bc03dfcef80cbbe78582429b063c (diff) | |
download | talos-op-linux-4eea9dc45fa7feb42e6dce32d94ea9ea4d64e40b.tar.gz talos-op-linux-4eea9dc45fa7feb42e6dce32d94ea9ea4d64e40b.zip |
[SCSI] stex: fix controller_info command handling
This command needs information from both firmware and driver. First copy
information from firmware to buffer, then fill in driver information.
Signed-off-by: Ed Lin <ed.lin@promise.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/stex.c')
-rw-r--r-- | drivers/scsi/stex.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/scsi/stex.c b/drivers/scsi/stex.c index 91d484c0dd93..ea0d82461317 100644 --- a/drivers/scsi/stex.c +++ b/drivers/scsi/stex.c @@ -507,6 +507,7 @@ static void stex_controller_info(struct st_hba *hba, struct st_ccb *ccb) size_t count = sizeof(struct st_frame); p = hba->copy_buffer; + stex_internal_copy(ccb->cmd, p, &count, ccb->sg_count, ST_FROM_CMD); memset(p->base, 0, sizeof(u32)*6); *(unsigned long *)(p->base) = pci_resource_start(hba->pdev, 0); p->rom_addr = 0; |