Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1313438

[PATCH 2/2] Staging:lustre:obdclass:linux:simplify NULL comparison

From Bhumika Goyal <bhumirks@gmail.com>
Newsgroups linux.kernel
Subject [PATCH 2/2] Staging:lustre:obdclass:linux:simplify NULL comparison
Date 2016-01-20 19:50 +0100
Message-ID <qT5Zn-24v-11@gated-at.bofh.it> (permalink)
References <qT5Zn-24v-1@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Remove explicit NULL comparision and replace it with a simpier form.
Detected using checkpatch.pl.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
 drivers/staging/lustre/lustre/obdclass/linux/linux-module.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/lustre/lustre/obdclass/linux/linux-module.c b/drivers/staging/lustre/lustre/obdclass/linux/linux-module.c
index 9663ae3..11fe6cb 100644
--- a/drivers/staging/lustre/lustre/obdclass/linux/linux-module.c
+++ b/drivers/staging/lustre/lustre/obdclass/linux/linux-module.c
@@ -239,7 +239,7 @@ static ssize_t health_show(struct kobject *kobj, struct attribute *attr,
 		struct obd_device *obd;
 
 		obd = class_num2obd(i);
-		if (obd == NULL || !obd->obd_attached || !obd->obd_set_up)
+		if (!obd || !obd->obd_attached || !obd->obd_set_up)
 			continue;
 
 		LASSERT(obd->obd_magic == OBD_DEVICE_MAGIC);
@@ -358,7 +358,7 @@ static int obd_device_list_seq_show(struct seq_file *p, void *v)
 	struct obd_device *obd = class_num2obd((int)index);
 	char *status;
 
-	if (obd == NULL)
+	if (!obd)
 		return 0;
 
 	LASSERT(obd->obd_magic == OBD_DEVICE_MAGIC);
@@ -422,7 +422,7 @@ int class_procfs_init(void)
 	struct dentry *file;
 
 	lustre_kobj = kobject_create_and_add("lustre", fs_kobj);
-	if (lustre_kobj == NULL)
+	if (!lustre_kobj)
 		goto out;
 
 	/* Create the files associated with this kobject */
-- 
1.9.1

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH 0/2]Staging:lustre:obdclass:linux:fix checkpatch.pl warnings Bhumika Goyal <bhumirks@gmail.com> - 2016-01-20 19:50 +0100
  [PATCH 2/2] Staging:lustre:obdclass:linux:simplify NULL comparison Bhumika Goyal <bhumirks@gmail.com> - 2016-01-20 19:50 +0100
  [PATCH 1/2] Staging:lustre:obdclass:linux:remove unnecessary braces Bhumika Goyal <bhumirks@gmail.com> - 2016-01-20 19:50 +0100
    Re: [PATCH 1/2] Staging:lustre:obdclass:linux:remove unnecessary  braces Joe Perches <joe@perches.com> - 2016-01-20 20:10 +0100

csiph-web