mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-01 14:11:15 +02:00
Fix compilation if CONFIG_INTERNAL=no
Fix compilation if everything except CONFIG_SATAMV is no. Do not compile in PCI support for wiki printing if no PCI devices are supported. Corresponding to flashrom svn r1278. Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Michael Karcher <flashrom@mkarcher.dialup.fu-berlin.de>
This commit is contained in:
@ -246,6 +246,8 @@ static void print_supported_chips_wiki(int cols)
|
||||
printf("\n|}\n\n|}\n");
|
||||
}
|
||||
|
||||
/* Not needed for CONFIG_INTERNAL, but for all other PCI-based programmers. */
|
||||
#if CONFIG_NIC3COM+CONFIG_NICREALTEK+CONFIG_NICNATSEMI+CONFIG_GFXNVIDIA+CONFIG_DRKAISER+CONFIG_SATASII+CONFIG_ATAHPT+CONFIG_NICINTEL_SPI+CONFIG_OGP_SPI+CONFIG_SATAMV >= 1
|
||||
static void print_supported_pcidevs_wiki(const struct pcidev_status *devs)
|
||||
{
|
||||
int i = 0;
|
||||
@ -262,6 +264,7 @@ static void print_supported_pcidevs_wiki(const struct pcidev_status *devs)
|
||||
(devs[i].status == NT) ? "?3" : "OK");
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
void print_supported_wiki(void)
|
||||
{
|
||||
|
Reference in New Issue
Block a user