Commit 5e1b887f authored by Valentina Manea's avatar Valentina Manea Committed by Greg Kroah-Hartman

staging: lustre: replace IS_ERR and PTR_ERR with PTR_ERR_OR_ZERO

This patch fixes coccinelle error regarding usage of IS_ERR and
PTR_ERR instead of PTR_ERR_OR_ZERO.
Signed-off-by: default avatarValentina Manea <valentina.manea.m@gmail.com>
Reviewed-by: default avatarRusty Russell <rusty@rustcorp.com.au>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ac0a2871
...@@ -548,9 +548,7 @@ static int __init fid_mod_init(void) ...@@ -548,9 +548,7 @@ static int __init fid_mod_init(void)
seq_type_proc_dir = lprocfs_register(LUSTRE_SEQ_NAME, seq_type_proc_dir = lprocfs_register(LUSTRE_SEQ_NAME,
proc_lustre_root, proc_lustre_root,
NULL, NULL); NULL, NULL);
if (IS_ERR(seq_type_proc_dir)) return PTR_ERR_OR_ZERO(seq_type_proc_dir);
return PTR_ERR(seq_type_proc_dir);
return 0;
} }
static void __exit fid_mod_exit(void) static void __exit fid_mod_exit(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment