sys/dev/isci/scil/scif_sas_controller.c:531]: (warning) Logical conjunction always evaluates to false: EXPR < 1 && EXPR > 32. if (scif_parms->sas.max_ncq_depth < 1 && scif_parms->sas.max_ncq_depth > 32) Maybe if (scif_parms->sas.max_ncq_depth < 1 || scif_parms->sas.max_ncq_depth > 32)
Fixed in base r315205.