sconfig: typo fix
eliminate printf format warning. Change-Id: I51f75a259d28c5de788f57c3d720b76ca638e330 Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com> Reviewed-on: http://review.coreboot.org/1248 Tested-by: build bot (Jenkins) Reviewed-by: Peter Stuge <peter@stuge.se>
This commit is contained in:
parent
cda9f93965
commit
116327ee06
|
@ -353,7 +353,7 @@ void add_ioapic_info(struct device *dev, int apicid, const char *_srcpin, int ir
|
|||
}
|
||||
|
||||
if (srcpin > 3) {
|
||||
printf("ERROR: srcpin '%d' invalid\n");
|
||||
printf("ERROR: srcpin '%d' invalid\n", srcpin);
|
||||
exit(1);
|
||||
}
|
||||
dev->pci_irq_info[srcpin].ioapic_irq_pin = irqpin;
|
||||
|
|
Loading…
Reference in New Issue