mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-23 12:43:55 +08:00
UBI: Fastmap: Simplify expression
There is no need to compute pnum again. Signed-off-by: Richard Weinberger <richard@nod.at> Acked-by: Brian Norris <computersforpeace@gmail.com>
This commit is contained in:
parent
7d25b361a2
commit
876f9a3487
@ -775,7 +775,7 @@ static int ubi_attach_fastmap(struct ubi_device *ubi,
|
||||
for (j = 0; j < be32_to_cpu(fm_eba->reserved_pebs); j++) {
|
||||
int pnum = be32_to_cpu(fm_eba->pnum[j]);
|
||||
|
||||
if ((int)be32_to_cpu(fm_eba->pnum[j]) < 0)
|
||||
if (pnum < 0)
|
||||
continue;
|
||||
|
||||
aeb = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user