diff options
Diffstat (limited to 'drivers/pci/hotplug/pci_hotplug.h')
-rw-r--r-- | drivers/pci/hotplug/pci_hotplug.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/drivers/pci/hotplug/pci_hotplug.h b/drivers/pci/hotplug/pci_hotplug.h index 88d44f7fef29..e476ed033384 100644 --- a/drivers/pci/hotplug/pci_hotplug.h +++ b/drivers/pci/hotplug/pci_hotplug.h | |||
@@ -176,5 +176,22 @@ extern int pci_hp_change_slot_info (struct hotplug_slot *slot, | |||
176 | struct hotplug_slot_info *info); | 176 | struct hotplug_slot_info *info); |
177 | extern struct subsystem pci_hotplug_slots_subsys; | 177 | extern struct subsystem pci_hotplug_slots_subsys; |
178 | 178 | ||
179 | struct hotplug_params { | ||
180 | u8 cache_line_size; | ||
181 | u8 latency_timer; | ||
182 | u8 enable_serr; | ||
183 | u8 enable_perr; | ||
184 | }; | ||
185 | |||
186 | #ifdef CONFIG_ACPI | ||
187 | #include <acpi/acpi.h> | ||
188 | #include <acpi/acpi_bus.h> | ||
189 | #include <acpi/actypes.h> | ||
190 | extern acpi_status acpi_run_oshp(acpi_handle handle); | ||
191 | extern acpi_status acpi_get_hp_params_from_firmware(struct pci_dev *dev, | ||
192 | struct hotplug_params *hpp); | ||
193 | extern u8 * acpi_path_name(acpi_handle handle); | ||
194 | int acpi_root_bridge(acpi_handle handle); | ||
195 | #endif | ||
179 | #endif | 196 | #endif |
180 | 197 | ||