mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
[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>
This commit is contained in:
parent
11002fbcb4
commit
53df8ba801
1 changed files with 2 additions and 5 deletions
|
@ -26,6 +26,7 @@
|
|||
#include <scsi/scsi_dbg.h>
|
||||
#include <scsi/scsi_device.h>
|
||||
#include <scsi/scsi_host.h>
|
||||
#include <scsi/scsi_eh.h>
|
||||
|
||||
#include <asm/lv1call.h>
|
||||
#include <asm/ps3stor.h>
|
||||
|
@ -330,11 +331,7 @@ static irqreturn_t ps3rom_interrupt(int irq, void *data)
|
|||
goto done;
|
||||
}
|
||||
|
||||
cmd->sense_buffer[0] = 0x70;
|
||||
cmd->sense_buffer[2] = sense_key;
|
||||
cmd->sense_buffer[7] = 16 - 6;
|
||||
cmd->sense_buffer[12] = asc;
|
||||
cmd->sense_buffer[13] = ascq;
|
||||
scsi_build_sense_buffer(0, cmd->sense_buffer, sense_key, asc, ascq);
|
||||
cmd->result = SAM_STAT_CHECK_CONDITION;
|
||||
|
||||
done:
|
||||
|
|
Loading…
Reference in a new issue