Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 33c712b4 authored by Salah Triki's avatar Salah Triki Committed by Luis de Bethencourt
Browse files

fs: befs: remove ret variable



ret is initialized to -EIO and is never modified, so remove ret and use
-EIO directly.

Signed-off-by: default avatarSalah Triki <salah.triki@gmail.com>
Acked-by: default avatarLuis de Bethencourt <luisbg@osg.samsung.com>
parent abcf9116
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -299,7 +299,6 @@ static struct inode *befs_iget(struct super_block *sb, unsigned long ino)
	struct befs_sb_info *befs_sb = BEFS_SB(sb);
	struct befs_inode_info *befs_ino;
	struct inode *inode;
	long ret = -EIO;

	befs_debug(sb, "---> %s inode = %lu", __func__, ino);

@@ -421,7 +420,7 @@ static struct inode *befs_iget(struct super_block *sb, unsigned long ino)
      unacquire_none:
	iget_failed(inode);
	befs_debug(sb, "<--- %s - Bad inode", __func__);
	return ERR_PTR(ret);
	return ERR_PTR(-EIO);
}

/* Initialize the inode cache. Called at fs setup.