Re: [PATCH 2/4] scsi: bfa: remove ScsiResult macro

From: Bart Van Assche
Date: Thu Jul 05 2018 - 13:00:24 EST


On Thu, 2018-07-05 at 13:01 +0200, Johannes Thumshirn wrote:
> - cmnd->result = ScsiResult(DID_OK, SCSI_STATUS_GOOD);
> + cmnd->result = DID_OK << 16 | SCSI_STATUS_GOOD;

Please consider to remove the SCSI_STATUS_GOOD constant since it is
non-standard and since it used by the bfa driver only. Additionally, since
SCSI_STATUS_GOOD == 0, please leave out "| SCSI_STATUS_GOOD".

Thanks,

Bart.