aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/acpica/acpi_pcibvar.h
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2010-08-05 16:10:12 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2010-08-05 16:10:12 +0000
commit7d23a9b3d524ccd350ce18d815cf5f02708e879b (patch)
tree15eb9a859994788488de0f649b41fdc6704a3806 /sys/dev/acpica/acpi_pcibvar.h
parent6ece019fcf279a0aaf03fff258b8bca116196e1c (diff)
downloadsrc-7d23a9b3d524ccd350ce18d815cf5f02708e879b.tar.gz
src-7d23a9b3d524ccd350ce18d815cf5f02708e879b.zip
- Retire acpi_pcib_resume(). It is has just been an alias for
bus_generic_resume() since the pci_link(4) driver was added. - Change the ACPI PCI-PCI bridge driver to inherit most of its methods from the generic PCI-PCI bridge driver. In particular, this will now restore PCI config registers for ACPI PCI-PCI bridges. Tested by: Oleg Sharoyko osharoiko of gmail
Notes
Notes: svn path=/head/; revision=210864
Diffstat (limited to 'sys/dev/acpica/acpi_pcibvar.h')
-rw-r--r--sys/dev/acpica/acpi_pcibvar.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/acpica/acpi_pcibvar.h b/sys/dev/acpica/acpi_pcibvar.h
index 5514a262b82d..00e03fa16bf8 100644
--- a/sys/dev/acpica/acpi_pcibvar.h
+++ b/sys/dev/acpica/acpi_pcibvar.h
@@ -31,13 +31,14 @@
#define _ACPI_PCIBVAR_H_
#ifdef _KERNEL
+
void acpi_pci_link_add_reference(device_t dev, int index, device_t pcib,
int slot, int pin);
int acpi_pci_link_route_interrupt(device_t dev, int index);
int acpi_pcib_attach(device_t bus, ACPI_BUFFER *prt, int busno);
int acpi_pcib_route_interrupt(device_t pcib, device_t dev, int pin,
ACPI_BUFFER *prtbuf);
-int acpi_pcib_resume(device_t dev);
+
#endif /* _KERNEL */
#endif /* !_ACPI_PCIBVAR_H_ */