Change (x == NULL) to !x and (x != NULL) to x, to fix
following checkpatch.pl warnings:
CHECK: Comparison to NULL could be written "!x".

Signed-off-by: Keyur Patel <iamkeyu...@gmail.com>
---
 drivers/scsi/g_NCR5380.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/g_NCR5380.c b/drivers/scsi/g_NCR5380.c
index 2ab774e62e40..6813094155d3 100644
--- a/drivers/scsi/g_NCR5380.c
+++ b/drivers/scsi/g_NCR5380.c
@@ -312,7 +312,7 @@ static int generic_NCR5380_init_one(struct 
scsi_host_template *tpnt,
        }
 
        instance = scsi_host_alloc(tpnt, sizeof(struct NCR5380_hostdata));
-       if (instance == NULL) {
+       if (!instance) {
                ret = -ENOMEM;
                goto out_unmap;
        }
-- 
2.22.0

Reply via email to