Explorar o código

crypto: qat - fix checkpatch COMPARISON_TO_NULL issue

CHECK:COMPARISON_TO_NULL: Comparison to NULL could be written
"!device_reset_wq"

Signed-off-by: Bruce Allan <bruce.w.allan@intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Allan, Bruce W %!s(int64=10) %!d(string=hai) anos
pai
achega
724c76ce30
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      drivers/crypto/qat/qat_common/adf_aer.c

+ 1 - 1
drivers/crypto/qat/qat_common/adf_aer.c

@@ -239,7 +239,7 @@ EXPORT_SYMBOL_GPL(adf_disable_aer);
 int adf_init_aer(void)
 {
 	device_reset_wq = create_workqueue("qat_device_reset_wq");
-	return (device_reset_wq == NULL) ? -EFAULT : 0;
+	return !device_reset_wq ? -EFAULT : 0;
 }
 
 void adf_exit_aer(void)