1
0
Fork 0

sysfs: fix simple_return.cocci warnings

security/smack/smackfs.c:2251:1-4: WARNING: end returns can be
simpified and declaration on line 2250 can be dropped

 Simplify a trivial if-return sequence.  Possibly combine with a
 preceding function call.

Generated by: scripts/coccinelle/misc/simple_return.cocci

Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Acked-by: Serge Hallyn <serge.hallyn@canonical.com>
Acked-by: Casey Schaufler <casey@schaufler-ca.com>
steinar/wifi_calib_4_9_kernel
kbuild test robot 2015-06-24 07:41:07 +08:00 committed by Casey Schaufler
parent 3bf2789cad
commit ca70d27e44
1 changed files with 1 additions and 5 deletions

View File

@ -2320,11 +2320,7 @@ static const struct file_operations smk_revoke_subj_ops = {
*/
static int smk_init_sysfs(void)
{
int err;
err = sysfs_create_mount_point(fs_kobj, "smackfs");
if (err)
return err;
return 0;
return sysfs_create_mount_point(fs_kobj, "smackfs");
}
/**