mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-07 04:09:21 +00:00
exofs: Remove redundant unlikely()
IS_ERR() already implies unlikely(), so it can be omitted here. Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
This commit is contained in:
parent
521cb40b0c
commit
2c722c9a47
1 changed files with 1 additions and 1 deletions
|
@ -495,7 +495,7 @@ static int exofs_read_lookup_dev_table(struct exofs_sb_info **psbi,
|
|||
}
|
||||
|
||||
od = osduld_info_lookup(&odi);
|
||||
if (unlikely(IS_ERR(od))) {
|
||||
if (IS_ERR(od)) {
|
||||
ret = PTR_ERR(od);
|
||||
EXOFS_ERR("ERROR: device requested is not found "
|
||||
"osd_name-%s =>%d\n", odi.osdname, ret);
|
||||
|
|
Loading…
Reference in a new issue