aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ubifs/lpt_commit.c
diff options
context:
space:
mode:
authorJulia Lawall <julia@diku.dk>2010-05-22 12:00:21 +0200
committerArtem Bityutskiy <Artem.Bityutskiy@nokia.com>2010-06-12 14:46:15 +0300
commit6da5156fad495730cca9238ead566222175b30b9 (patch)
treeda90bb6b4897c78e866e468236d067147ed5c150 /fs/ubifs/lpt_commit.c
parent276de5d2a18bcdc69e6d48a4d96afc14cfef9dcb (diff)
downloadkernel_samsung_smdk4412-6da5156fad495730cca9238ead566222175b30b9.zip
kernel_samsung_smdk4412-6da5156fad495730cca9238ead566222175b30b9.tar.gz
kernel_samsung_smdk4412-6da5156fad495730cca9238ead566222175b30b9.tar.bz2
UBIFS: use ERR_CAST
Use ERR_CAST(x) rather than ERR_PTR(PTR_ERR(x)). The former makes more clear what is the purpose of the operation, which otherwise looks like a no-op. Signed-off-by: Julia Lawall <julia@diku.dk> Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'fs/ubifs/lpt_commit.c')
-rw-r--r--fs/ubifs/lpt_commit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ubifs/lpt_commit.c b/fs/ubifs/lpt_commit.c
index 13cb7a4..d12535b 100644
--- a/fs/ubifs/lpt_commit.c
+++ b/fs/ubifs/lpt_commit.c
@@ -646,7 +646,7 @@ static struct ubifs_pnode *pnode_lookup(struct ubifs_info *c, int i)
shft -= UBIFS_LPT_FANOUT_SHIFT;
nnode = ubifs_get_nnode(c, nnode, iip);
if (IS_ERR(nnode))
- return ERR_PTR(PTR_ERR(nnode));
+ return ERR_CAST(nnode);
}
iip = ((i >> shft) & (UBIFS_LPT_FANOUT - 1));
return ubifs_get_pnode(c, nnode, iip);