Re: [PATCH] scsi: smartpqi_init: fix boolean expression in pqi_device_remove_start

2019-01-03 Thread Martin K. Petersen
Gustavo, > Fix boolean expression by using logical AND operator '&&' instead of > bitwise operator '&'. Applied to 4.21/scsi-fixes, thanks! -- Martin K. Petersen Oracle Linux Engineering

RE: [PATCH] scsi: smartpqi_init: fix boolean expression in pqi_device_remove_start

2019-01-03 Thread Don.Brace
@vger.kernel.org; Gustavo A. R. Silva Subject: [PATCH] scsi: smartpqi_init: fix boolean expression in pqi_device_remove_start EXTERNAL EMAIL Fix boolean expression by using logical AND operator '&&' instead of bitwise operator '&'. This issue was detected with the help of Coccinelle. Fixes:

[PATCH] scsi: smartpqi_init: fix boolean expression in pqi_device_remove_start

2019-01-03 Thread Gustavo A. R. Silva
Fix boolean expression by using logical AND operator '&&' instead of bitwise operator '&'. This issue was detected with the help of Coccinelle. Fixes: 1e46731efd9c ("scsi: smartpqi: check for null device pointers") Signed-off-by: Gustavo A. R. Silva --- drivers/scsi/smartpqi/smartpqi_init.c |