diff options
author | iwasaki <iwasaki@FreeBSD.org> | 2003-09-17 08:32:44 +0000 |
---|---|---|
committer | iwasaki <iwasaki@FreeBSD.org> | 2003-09-17 08:32:44 +0000 |
commit | 9fac14e51fbda70a693d9001fd1ab05d3560cc98 (patch) | |
tree | df08b28e66ee6ccb78c1f44513d4a14348e26794 /sys/dev/pci/pci_private.h | |
parent | ab6ce03a9b2691492b4e4996f2f14960556c42e8 (diff) | |
download | FreeBSD-src-9fac14e51fbda70a693d9001fd1ab05d3560cc98.zip FreeBSD-src-9fac14e51fbda70a693d9001fd1ab05d3560cc98.tar.gz |
Add pci_resume() to reestablish interrupt routing after
suspend/resume.
Especially after hibernation, interrupt routing went back to initial
status on some machines.
Diffstat (limited to 'sys/dev/pci/pci_private.h')
-rw-r--r-- | sys/dev/pci/pci_private.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/pci/pci_private.h b/sys/dev/pci/pci_private.h index 3123c61..816106d 100644 --- a/sys/dev/pci/pci_private.h +++ b/sys/dev/pci/pci_private.h @@ -73,4 +73,5 @@ int pci_child_location_str_method(device_t cbdev, device_t child, int pci_child_pnpinfo_str_method(device_t cbdev, device_t child, char *buf, size_t buflen); int pci_assign_interrupt_method(device_t dev, device_t child); +int pci_resume(device_t dev); #endif /* _PCI_PRIVATE_H_ */ |