block: 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: Duan Jiong <duanj.fnst@cn.fujitsu.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
Родитель
97597dc08f
Коммит
8616ebb16b
|
@ -31,7 +31,7 @@ static int __init fail_io_timeout_debugfs(void)
|
||||||
struct dentry *dir = fault_create_debugfs_attr("fail_io_timeout",
|
struct dentry *dir = fault_create_debugfs_attr("fail_io_timeout",
|
||||||
NULL, &fail_io_timeout);
|
NULL, &fail_io_timeout);
|
||||||
|
|
||||||
return IS_ERR(dir) ? PTR_ERR(dir) : 0;
|
return PTR_ERR_OR_ZERO(dir);
|
||||||
}
|
}
|
||||||
|
|
||||||
late_initcall(fail_io_timeout_debugfs);
|
late_initcall(fail_io_timeout_debugfs);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче