diff options
| author | Nate Lawson <njl@FreeBSD.org> | 2004-08-21 18:18:32 +0000 |
|---|---|---|
| committer | Nate Lawson <njl@FreeBSD.org> | 2004-08-21 18:18:32 +0000 |
| commit | 85bafe5ec3f441cd4be5851c97412b33f9e34b1b (patch) | |
| tree | ae6fbfa48280d6b5803b82a07a43fb7d4e0addba /sys/dev/acpica | |
| parent | 3e90f289dff46be8c2fe1daf1f3cbc276907257c (diff) | |
Notes
Diffstat (limited to 'sys/dev/acpica')
| -rw-r--r-- | sys/dev/acpica/acpi_pci_link.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/acpica/acpi_pci_link.c b/sys/dev/acpica/acpi_pci_link.c index a9f2d13198f7a..13a9ecb9fea64 100644 --- a/sys/dev/acpica/acpi_pci_link.c +++ b/sys/dev/acpica/acpi_pci_link.c @@ -1018,7 +1018,7 @@ acpi_pci_link_resume(device_t dev) /* Walk through all PRT entries for this PCI bridge. */ ACPI_SERIAL_BEGIN(pci_link); TAILQ_FOREACH(entry, &acpi_prt_entries, links) { - if (entry->pcidev == dev || entry->pci_link == NULL) + if (entry->pcidev != dev || entry->pci_link == NULL) continue; link = entry->pci_link; |
