diff options
Diffstat (limited to 'drivers/message/i2o/i2o_scsi.c')
-rw-r--r-- | drivers/message/i2o/i2o_scsi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/message/i2o/i2o_scsi.c b/drivers/message/i2o/i2o_scsi.c index aa6fb9429d58..1bcdbbb9e7d3 100644 --- a/drivers/message/i2o/i2o_scsi.c +++ b/drivers/message/i2o/i2o_scsi.c | |||
@@ -370,7 +370,7 @@ static int i2o_scsi_reply(struct i2o_controller *c, u32 m, | |||
370 | */ | 370 | */ |
371 | if (cmd->result) | 371 | if (cmd->result) |
372 | memcpy(cmd->sense_buffer, &msg->body[3], | 372 | memcpy(cmd->sense_buffer, &msg->body[3], |
373 | min(sizeof(cmd->sense_buffer), (size_t) 40)); | 373 | min(SCSI_SENSE_BUFFERSIZE, 40)); |
374 | 374 | ||
375 | /* only output error code if AdapterStatus is not HBA_SUCCESS */ | 375 | /* only output error code if AdapterStatus is not HBA_SUCCESS */ |
376 | if ((error >> 8) & 0xff) | 376 | if ((error >> 8) & 0xff) |