s390/hypfs: Cocci spatch "ptr_ret.spatch"

Signed-off-by: Thomas Meyer <thomas@m3y3r.de>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
Thomas Meyer 2013-06-01 11:59:51 +02:00 committed by Martin Schwidefsky
parent 735e849f72
commit 5eba9bb80f
1 changed files with 2 additions and 6 deletions

View File

@ -651,9 +651,7 @@ static int hypfs_create_cpu_files(struct super_block *sb,
} }
diag224_idx2name(cpu_info__ctidx(diag204_info_type, cpu_info), buffer); diag224_idx2name(cpu_info__ctidx(diag204_info_type, cpu_info), buffer);
rc = hypfs_create_str(sb, cpu_dir, "type", buffer); rc = hypfs_create_str(sb, cpu_dir, "type", buffer);
if (IS_ERR(rc)) return PTR_RET(rc);
return PTR_ERR(rc);
return 0;
} }
static void *hypfs_create_lpar_files(struct super_block *sb, static void *hypfs_create_lpar_files(struct super_block *sb,
@ -702,9 +700,7 @@ static int hypfs_create_phys_cpu_files(struct super_block *sb,
return PTR_ERR(rc); return PTR_ERR(rc);
diag224_idx2name(phys_cpu__ctidx(diag204_info_type, cpu_info), buffer); diag224_idx2name(phys_cpu__ctidx(diag204_info_type, cpu_info), buffer);
rc = hypfs_create_str(sb, cpu_dir, "type", buffer); rc = hypfs_create_str(sb, cpu_dir, "type", buffer);
if (IS_ERR(rc)) return PTR_RET(rc);
return PTR_ERR(rc);
return 0;
} }
static void *hypfs_create_phys_files(struct super_block *sb, static void *hypfs_create_phys_files(struct super_block *sb,