Commit 84947eb6 authored by Gao Xiang's avatar Gao Xiang Committed by Greg Kroah-Hartman
Browse files

erofs: save one level of indentation

parent 73d03931
Loading
Loading
Loading
Loading
+33 −32
Original line number Diff line number Diff line
@@ -193,7 +193,9 @@ static int erofs_fill_inode(struct inode *inode, int isdir)
	data = page_address(page);

	err = erofs_read_inode(inode, data + ofs);
	if (!err) {
	if (err)
		goto out_unlock;

	/* setup the new inode */
	switch (inode->i_mode & S_IFMT) {
	case S_IFREG:
@@ -227,7 +229,6 @@ static int erofs_fill_inode(struct inode *inode, int isdir)
		goto out_unlock;
	}
	inode->i_mapping->a_ops = &erofs_raw_access_aops;
	}

out_unlock:
	unlock_page(page);