projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
29549ae
)
btrfs: use PTR_ERR_OR_ZERO
author
Fabian Frederick
<fabf@skynet.be>
Fri, 4 Jul 2014 19:10:27 +0000
(21:10 +0200)
committer
Chris Mason
<clm@fb.com>
Wed, 17 Sep 2014 20:37:29 +0000
(13:37 -0700)
replace IS_ERR/PTR_ERR
Cc: Chris Mason <clm@fb.com>
Cc: Josef Bacik <jbacik@fb.com>
Cc: linux-btrfs@vger.kernel.org
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Chris Mason <clm@fb.com>
fs/btrfs/hash.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/btrfs/hash.c
b/fs/btrfs/hash.c
index 85889aa82c62dd8d05d9c8a01cff08f86afc4d05..64f15bb30a81dbf9ada217d4e0c09cd74fddb197 100644
(file)
--- a/
fs/btrfs/hash.c
+++ b/
fs/btrfs/hash.c
@@
-20,10
+20,8
@@
static struct crypto_shash *tfm;
int __init btrfs_hash_init(void)
{
tfm = crypto_alloc_shash("crc32c", 0, 0);
- if (IS_ERR(tfm))
- return PTR_ERR(tfm);
- return
0
;
+ return
PTR_ERR_OR_ZERO(tfm)
;
}
void btrfs_hash_exit(void)