diff options
Diffstat (limited to 'drivers/pci/hotplug/acpiphp_glue.c')
-rw-r--r-- | drivers/pci/hotplug/acpiphp_glue.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/pci/hotplug/acpiphp_glue.c b/drivers/pci/hotplug/acpiphp_glue.c index 424e7de181ae..8e21f6ab89a1 100644 --- a/drivers/pci/hotplug/acpiphp_glue.c +++ b/drivers/pci/hotplug/acpiphp_glue.c | |||
@@ -58,6 +58,9 @@ static LIST_HEAD(bridge_list); | |||
58 | 58 | ||
59 | static void handle_hotplug_event_bridge (acpi_handle, u32, void *); | 59 | static void handle_hotplug_event_bridge (acpi_handle, u32, void *); |
60 | static void handle_hotplug_event_func (acpi_handle, u32, void *); | 60 | static void handle_hotplug_event_func (acpi_handle, u32, void *); |
61 | static void acpiphp_sanitize_bus(struct pci_bus *bus); | ||
62 | static void acpiphp_set_hpp_values(acpi_handle handle, struct pci_bus *bus); | ||
63 | |||
61 | 64 | ||
62 | /* | 65 | /* |
63 | * initialization & terminatation routines | 66 | * initialization & terminatation routines |
@@ -796,8 +799,13 @@ static int enable_device(struct acpiphp_slot *slot) | |||
796 | } | 799 | } |
797 | } | 800 | } |
798 | 801 | ||
802 | pci_bus_size_bridges(bus); | ||
799 | pci_bus_assign_resources(bus); | 803 | pci_bus_assign_resources(bus); |
804 | acpiphp_sanitize_bus(bus); | ||
805 | pci_enable_bridges(bus); | ||
800 | pci_bus_add_devices(bus); | 806 | pci_bus_add_devices(bus); |
807 | acpiphp_set_hpp_values(DEVICE_ACPI_HANDLE(&bus->self->dev), bus); | ||
808 | acpiphp_configure_ioapics(DEVICE_ACPI_HANDLE(&bus->self->dev)); | ||
801 | 809 | ||
802 | /* associate pci_dev to our representation */ | 810 | /* associate pci_dev to our representation */ |
803 | list_for_each (l, &slot->funcs) { | 811 | list_for_each (l, &slot->funcs) { |