qla2xxx: Use true, false for need_mpi_reset

[ commit bda552a7741a23708823c6e87a39d9a956087ac0 upstream ]


git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@8959 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Bart Van Assche
2020-05-23 22:04:02 +00:00
parent 630c4f49d0
commit db5f6bc28b

View File

@@ -1028,7 +1028,7 @@ void
qla27xx_mpi_fwdump(scsi_qla_host_t *vha, int hardware_locked)
{
ulong flags = 0;
bool need_mpi_reset = 1;
bool need_mpi_reset = true;
#ifndef __CHECKER__
if (!hardware_locked)
@@ -1059,7 +1059,7 @@ qla27xx_mpi_fwdump(scsi_qla_host_t *vha, int hardware_locked)
"-> fwdt1 fwdump residual=%+ld\n",
fwdt->dump_size - len);
} else {
need_mpi_reset = 0;
need_mpi_reset = false;
}
vha->hw->mpi_fw_dump_len = len;