diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2008-03-24 20:26:53 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-04-07 13:19:02 -0400 |
commit | 53df8ba801b835ebbd116b4585adfe7ce4efd2b3 (patch) | |
tree | 57a3e6f7677e7794a928222dbb4eec2eb86acb5a /drivers/scsi/ps3rom.c | |
parent | 11002fbcb472cf1176d97eac214df98f7c17f69c (diff) |
[SCSI] ps3rom: use scsi_build_sense_buffer
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Acked-by: Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/ps3rom.c')
-rw-r--r-- | drivers/scsi/ps3rom.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/scsi/ps3rom.c b/drivers/scsi/ps3rom.c index d1e7845e11c7..ce48e2d0193c 100644 --- a/drivers/scsi/ps3rom.c +++ b/drivers/scsi/ps3rom.c | |||
@@ -26,6 +26,7 @@ | |||
26 | #include <scsi/scsi_dbg.h> | 26 | #include <scsi/scsi_dbg.h> |
27 | #include <scsi/scsi_device.h> | 27 | #include <scsi/scsi_device.h> |
28 | #include <scsi/scsi_host.h> | 28 | #include <scsi/scsi_host.h> |
29 | #include <scsi/scsi_eh.h> | ||
29 | 30 | ||
30 | #include <asm/lv1call.h> | 31 | #include <asm/lv1call.h> |
31 | #include <asm/ps3stor.h> | 32 | #include <asm/ps3stor.h> |
@@ -330,11 +331,7 @@ static irqreturn_t ps3rom_interrupt(int irq, void *data) | |||
330 | goto done; | 331 | goto done; |
331 | } | 332 | } |
332 | 333 | ||
333 | cmd->sense_buffer[0] = 0x70; | 334 | scsi_build_sense_buffer(0, cmd->sense_buffer, sense_key, asc, ascq); |
334 | cmd->sense_buffer[2] = sense_key; | ||
335 | cmd->sense_buffer[7] = 16 - 6; | ||
336 | cmd->sense_buffer[12] = asc; | ||
337 | cmd->sense_buffer[13] = ascq; | ||
338 | cmd->result = SAM_STAT_CHECK_CONDITION; | 335 | cmd->result = SAM_STAT_CHECK_CONDITION; |
339 | 336 | ||
340 | done: | 337 | done: |