s390/hypfs: Use PTR_RET function
Used PTR_RET function instead of IS_ERR and PTR_ERR. Patch found using coccinelle. Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com> Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
parent
8fe853f393
commit
2b55732ad2
|
@ -105,9 +105,7 @@ void hypfs_dbfs_remove_file(struct hypfs_dbfs_file *df)
|
||||||
int hypfs_dbfs_init(void)
|
int hypfs_dbfs_init(void)
|
||||||
{
|
{
|
||||||
dbfs_dir = debugfs_create_dir("s390_hypfs", NULL);
|
dbfs_dir = debugfs_create_dir("s390_hypfs", NULL);
|
||||||
if (IS_ERR(dbfs_dir))
|
return PTR_RET(dbfs_dir);
|
||||||
return PTR_ERR(dbfs_dir);
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void hypfs_dbfs_exit(void)
|
void hypfs_dbfs_exit(void)
|
||||||
|
|
Loading…
Reference in New Issue