diff options
author | akpm@linux-foundation.org <akpm@linux-foundation.org> | 2008-01-15 19:01:52 -0500 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2008-01-23 05:24:16 -0500 |
commit | cadb7345d92628d46cccd3765cc15cb9cd6abccf (patch) | |
tree | 2d5895102c0cd9182521eb408d7c77333498c1f1 /drivers/ata | |
parent | defc9cd826e4a99f550504a744f9407b518828ae (diff) |
[libata] Prefer SCSI_SENSE_BUFFERSIZE to sizeof()
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
Cc: Jeff Garzik <jeff@garzik.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/libata-scsi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/libata-scsi.c b/drivers/ata/libata-scsi.c index 15a4c8a20358..989b7755af3d 100644 --- a/drivers/ata/libata-scsi.c +++ b/drivers/ata/libata-scsi.c | |||
@@ -2342,7 +2342,7 @@ static void atapi_request_sense(struct ata_queued_cmd *qc) | |||
2342 | ata_qc_reinit(qc); | 2342 | ata_qc_reinit(qc); |
2343 | 2343 | ||
2344 | /* setup sg table and init transfer direction */ | 2344 | /* setup sg table and init transfer direction */ |
2345 | sg_init_one(&qc->sgent, cmd->sense_buffer, sizeof(cmd->sense_buffer)); | 2345 | sg_init_one(&qc->sgent, cmd->sense_buffer, SCSI_SENSE_BUFFERSIZE); |
2346 | ata_sg_init(qc, &qc->sgent, 1); | 2346 | ata_sg_init(qc, &qc->sgent, 1); |
2347 | qc->dma_dir = DMA_FROM_DEVICE; | 2347 | qc->dma_dir = DMA_FROM_DEVICE; |
2348 | 2348 | ||