sconfig: Emit probe_list in all stages
`probe_list` member in `struct device` is present in all stages, however, util/sconfig emits the list only when !DEVTREE_EARLY. This change ensures that `probe_list` is emitted in all stages. In follow up changes, this is used to get the correct device state using probe conditions. Change-Id: I61f7e909d48b616ac2127a5a9f36bdf4817a5165 Signed-off-by: Furquan Shaikh <furquan@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/54829 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: EricR Lai <ericr_lai@compal.corp-partner.google.com> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
This commit is contained in:
parent
17298c09de
commit
e59ad2e0da
|
@ -1241,9 +1241,9 @@ static void pass1(FILE *fil, FILE *head, struct device *ptr, struct device *next
|
|||
fprintf(fil, "\t.sibling = &%s,\n", ptr->sibling->name);
|
||||
else
|
||||
fprintf(fil, "\t.sibling = NULL,\n");
|
||||
fprintf(fil, "#if !DEVTREE_EARLY\n");
|
||||
if (ptr->probe)
|
||||
fprintf(fil, "\t.probe_list = %s_probe_list,\n", ptr->name);
|
||||
fprintf(fil, "#if !DEVTREE_EARLY\n");
|
||||
for (pin = 0; pin < 4; pin++) {
|
||||
if (ptr->pci_irq_info[pin].ioapic_irq_pin > 0)
|
||||
fprintf(fil,
|
||||
|
|
Loading…
Reference in New Issue