diff options
Diffstat (limited to 'drivers/scsi/hpsa.c')
| -rw-r--r-- | drivers/scsi/hpsa.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c index 796482badf1..2b4261cb774 100644 --- a/drivers/scsi/hpsa.c +++ b/drivers/scsi/hpsa.c @@ -1315,8 +1315,9 @@ static void complete_scsi_command(struct CommandList *cp)  	}  		break;  	case CMD_PROTOCOL_ERR: +		cmd->result = DID_ERROR << 16;  		dev_warn(&h->pdev->dev, "cp %p has " -			"protocol error \n", cp); +			"protocol error\n", cp);  		break;  	case CMD_HARDWARE_ERR:  		cmd->result = DID_ERROR << 16;  |