1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-02 06:23:18 +02:00

Replace PCI_OK/PCI_NT by OK/NT

We don't need to duplicate OK and NT as PCI_OK and PCI_NT if the symbols
are already there (defined for the chipset enable table).

Corresponding to flashrom svn r911.

Signed-off-by: Michael Karcher <flashrom@mkarcher.dialup.fu-berlin.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
This commit is contained in:
Michael Karcher
2010-02-24 00:04:40 +00:00
parent 01f6d7d15d
commit 844863933d
8 changed files with 46 additions and 48 deletions

View File

@ -49,7 +49,7 @@ uint32_t pcidev_validate(struct pci_dev *dev, uint32_t bar,
dev->vendor_id, dev->device_id, dev->bus, dev->dev,
dev->func);
if (devs[i].status == PCI_NT) {
if (devs[i].status == NT) {
printf("===\nThis PCI device is UNTESTED. Please "
"report the 'flashrom -p xxxx' output \n"
"to flashrom@flashrom.org if it works "
@ -117,6 +117,6 @@ void print_supported_pcidevs(struct pcidev_status *devs)
printf("%s %s [%02x:%02x]%s\n", devs[i].vendor_name,
devs[i].device_name, devs[i].vendor_id,
devs[i].device_id,
(devs[i].status == PCI_NT) ? " (untested)" : "");
(devs[i].status == NT) ? " (untested)" : "");
}
}