staging: erofs: remove redundant unlikely annotation in unzip_vle.c
unlikely has already included in IS_ERR(), so just remove it. Signed-off-by: Chengguang Xu <cgxu519@gmx.com> Reviewed-by: Gao Xiang <gaoxiang25@huawei.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
7fadcdce5d
commit
209312369e
|
@ -539,7 +539,7 @@ repeat:
|
|||
if (unlikely(work == ERR_PTR(-EAGAIN)))
|
||||
goto repeat;
|
||||
|
||||
if (unlikely(IS_ERR(work)))
|
||||
if (IS_ERR(work))
|
||||
return PTR_ERR(work);
|
||||
got_it:
|
||||
z_erofs_pagevec_ctor_init(&builder->vector,
|
||||
|
|
Loading…
Reference in New Issue