1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-27 15:12:36 +02:00

tree: Remove unneeded semicolons after loops

Trivial cleanup

Change-Id: Id93a019a39b765c70b1a4eaeb25d9b582c3e4141
Signed-off-by: David Hendricks <david.hendricks@gmail.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/42742
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
David Hendricks 2020-06-23 14:16:26 -07:00
parent 3c720597c3
commit 17d463718d
2 changed files with 2 additions and 2 deletions

View File

@ -205,7 +205,7 @@ static struct lb_header *find_lb_table(void *base, unsigned long start,
msg_pdbg("Found coreboot table at 0x%08lx.\n", addr);
return head;
};
}
return NULL;
}

View File

@ -160,7 +160,7 @@ static int send_read(unsigned int readcnt, unsigned char *readarr)
return -1;
}
n_read -= payload_size;
};
}
n_read = readcnt;
while (n_read) {