On 9/12/2024 3:30 PM, Bart Van Assche wrote:
In ufshcd_uic_cmd_compl(), there is code that dereferences 'cmd' with and without checking the 'cmd' pointer. This confuses static source code analyzers like Coverity and sparse. Since none of the code in ufshcd_uic_cmd_compl() can do anything useful if 'cmd' is NULL, move the 'cmd' test near the start of this function. Signed-off-by: Bart Van Assche <bvanassche@xxxxxxx>
if (ufshcd_is_auto_hibern8_error(hba, intr_status)) hba->errors |= (UFSHCD_UIC_HIBERN8_MASK & intr_status);
Hi Bart, while you are at it, there are extra parenthesis here too. Reviewed-by: Bao D. Nguyen <quic_nguyenb@xxxxxxxxxxx>