Date: Sat, 21 Aug 2004 15:40:03 +0900 From: "Hiroyuki Aizu" <eyes@navi.org> To: freebsd-acpi@freebsd.org Subject: [PATCH] Some devices does not resetting IRQ after suspend/resume with ACPI. Message-ID: <opsc2ks1fmp4eskm@localhost>
next in thread | raw e-mail | index | archive | help
Hi. I need the patch against acpi_pci_link.c like bellow. Because some devices does not resetting IRQ after suspend/resume on my Libretto L5. I try on recent 6-current. It looks like just typo. It occurs modify of acpi_pci_link.c between rev 1.18 and 1.19, the "Re-work ACPI PCI IRQ routing". Please apply the patch to 6-current and 5-stable. Thanks. -- Hiroyuki Aizu --- sys/dev/acpica/acpi_pci_link.c.origFri Aug 20 22:56:32 2004 +++ sys/dev/acpica/acpi_pci_link.cSat Aug 21 14:39:34 2004 @@ -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 =3D=3D dev || entry->pci_link =3D=3D NULL) + if (entry->pcidev !=3D dev || entry->pci_link =3D=3D NULL) continue; link =3D entry->pci_link;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?opsc2ks1fmp4eskm>