[PATCH] drivers:staging:lustre Fixed sparse warning: plain integer as NULL pointer

2014-03-24 Thread John de la Garza
Fixes these sparse warnings:
drivers/staging/lustre/lustre/lmv/lproc_lmv.c:202:51: warning: Using plain 
integer as NULL pointer
drivers/staging/lustre/lustre/lmv/lproc_lmv.c:203:51: warning: Using plain 
integer as NULL pointer
drivers/staging/lustre/lustre/lmv/lproc_lmv.c:204:51: warning: Using plain 
integer as NULL pointer
drivers/staging/lustre/lustre/lmv/lproc_lmv.c:205:51: warning: Using plain 
integer as NULL pointer
drivers/staging/lustre/lustre/lmv/lproc_lmv.c:206:51: warning: Using plain 
integer as NULL pointer
drivers/staging/lustre/lustre/lmv/lproc_lmv.c:207:11: warning: Using plain 
integer as NULL pointer
drivers/staging/lustre/lustre/lmv/lproc_lmv.c:213:47: warning: Using plain 
integer as NULL pointer
drivers/staging/lustre/lustre/lmv/lproc_lmv.c:214:11: warning: Using plain 
integer as NULL pointer

Signed-off-by: John de la Garza 
---
 drivers/staging/lustre/lustre/lmv/lproc_lmv.c | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/drivers/staging/lustre/lustre/lmv/lproc_lmv.c 
b/drivers/staging/lustre/lustre/lmv/lproc_lmv.c
index b355d01..5d75e8c 100644
--- a/drivers/staging/lustre/lustre/lmv/lproc_lmv.c
+++ b/drivers/staging/lustre/lustre/lmv/lproc_lmv.c
@@ -199,19 +199,19 @@ static int lmv_target_seq_open(struct inode *inode, 
struct file *file)
 LPROC_SEQ_FOPS_RO_TYPE(lmv, uuid);
 
 struct lprocfs_vars lprocfs_lmv_obd_vars[] = {
-   { "numobd",   _numobd_fops,   0, 0 },
-   { "placement",_placement_fops,0, 0 },
-   { "activeobd",_activeobd_fops,0, 0 },
-   { "uuid", _uuid_fops, 0, 0 },
-   { "desc_uuid",_desc_uuid_fops,0, 0 },
-   { 0 }
+   { "numobd",   _numobd_fops,   NULL, 0 },
+   { "placement",_placement_fops,NULL, 0 },
+   { "activeobd",_activeobd_fops,NULL, 0 },
+   { "uuid", _uuid_fops, NULL, 0 },
+   { "desc_uuid",_desc_uuid_fops,NULL, 0 },
+   { NULL }
 };
 
 LPROC_SEQ_FOPS_RO_TYPE(lmv, numrefs);
 
 static struct lprocfs_vars lprocfs_lmv_module_vars[] = {
-   { "num_refs",  _numrefs_fops, 0, 0 },
-   { 0 }
+   { "num_refs",  _numrefs_fops, NULL, 0 },
+   { NULL }
 };
 
 struct file_operations lmv_proc_target_fops = {
-- 
1.9.0

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] drivers:staging:lustre Fixed sparse warning: plain integer as NULL pointer

2014-03-24 Thread John de la Garza
Fixes these sparse warnings:
drivers/staging/lustre/lustre/lmv/lproc_lmv.c:202:51: warning: Using plain 
integer as NULL pointer
drivers/staging/lustre/lustre/lmv/lproc_lmv.c:203:51: warning: Using plain 
integer as NULL pointer
drivers/staging/lustre/lustre/lmv/lproc_lmv.c:204:51: warning: Using plain 
integer as NULL pointer
drivers/staging/lustre/lustre/lmv/lproc_lmv.c:205:51: warning: Using plain 
integer as NULL pointer
drivers/staging/lustre/lustre/lmv/lproc_lmv.c:206:51: warning: Using plain 
integer as NULL pointer
drivers/staging/lustre/lustre/lmv/lproc_lmv.c:207:11: warning: Using plain 
integer as NULL pointer
drivers/staging/lustre/lustre/lmv/lproc_lmv.c:213:47: warning: Using plain 
integer as NULL pointer
drivers/staging/lustre/lustre/lmv/lproc_lmv.c:214:11: warning: Using plain 
integer as NULL pointer

Signed-off-by: John de la Garza j...@jjdev.com
---
 drivers/staging/lustre/lustre/lmv/lproc_lmv.c | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/drivers/staging/lustre/lustre/lmv/lproc_lmv.c 
b/drivers/staging/lustre/lustre/lmv/lproc_lmv.c
index b355d01..5d75e8c 100644
--- a/drivers/staging/lustre/lustre/lmv/lproc_lmv.c
+++ b/drivers/staging/lustre/lustre/lmv/lproc_lmv.c
@@ -199,19 +199,19 @@ static int lmv_target_seq_open(struct inode *inode, 
struct file *file)
 LPROC_SEQ_FOPS_RO_TYPE(lmv, uuid);
 
 struct lprocfs_vars lprocfs_lmv_obd_vars[] = {
-   { numobd,   lmv_numobd_fops,   0, 0 },
-   { placement,lmv_placement_fops,0, 0 },
-   { activeobd,lmv_activeobd_fops,0, 0 },
-   { uuid, lmv_uuid_fops, 0, 0 },
-   { desc_uuid,lmv_desc_uuid_fops,0, 0 },
-   { 0 }
+   { numobd,   lmv_numobd_fops,   NULL, 0 },
+   { placement,lmv_placement_fops,NULL, 0 },
+   { activeobd,lmv_activeobd_fops,NULL, 0 },
+   { uuid, lmv_uuid_fops, NULL, 0 },
+   { desc_uuid,lmv_desc_uuid_fops,NULL, 0 },
+   { NULL }
 };
 
 LPROC_SEQ_FOPS_RO_TYPE(lmv, numrefs);
 
 static struct lprocfs_vars lprocfs_lmv_module_vars[] = {
-   { num_refs,  lmv_numrefs_fops, 0, 0 },
-   { 0 }
+   { num_refs,  lmv_numrefs_fops, NULL, 0 },
+   { NULL }
 };
 
 struct file_operations lmv_proc_target_fops = {
-- 
1.9.0

--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/