src/lib/selfboot: Remove unused variables
Change-Id: I8d80084095912c30bfd8fc100bf27b522485a08a Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/32430 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
parent
6ee9ee4cab
commit
d84e20b33c
|
@ -146,10 +146,10 @@ static int check_payload_segments(struct cbfs_payload_segment *cbfssegs,
|
||||||
{
|
{
|
||||||
uint8_t *dest;
|
uint8_t *dest;
|
||||||
size_t memsz;
|
size_t memsz;
|
||||||
struct cbfs_payload_segment *first_segment, *seg, segment;
|
struct cbfs_payload_segment *seg, segment;
|
||||||
enum bootmem_type dest_type = *(enum bootmem_type *)args;
|
enum bootmem_type dest_type = *(enum bootmem_type *)args;
|
||||||
|
|
||||||
for (first_segment = seg = cbfssegs;; ++seg) {
|
for (seg = cbfssegs;; ++seg) {
|
||||||
printk(BIOS_DEBUG, "Checking segment from ROM address 0x%p\n", seg);
|
printk(BIOS_DEBUG, "Checking segment from ROM address 0x%p\n", seg);
|
||||||
cbfs_decode_payload_segment(&segment, seg);
|
cbfs_decode_payload_segment(&segment, seg);
|
||||||
dest = (uint8_t *)(uintptr_t)segment.load_addr;
|
dest = (uint8_t *)(uintptr_t)segment.load_addr;
|
||||||
|
|
Loading…
Reference in New Issue