Skip to content

Commit

Permalink
[PATCH] acpiphp: allocate resources for adapters with bridges
Browse files Browse the repository at this point in the history
Allocate resources for adapters with bridges on them.

Signed-off-by: Kristen Carlson Accardi <kristen.c.accardi@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Kristen Accardi authored and Greg Kroah-Hartman committed Oct 28, 2005
1 parent 5457b6a commit 8e5dce3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions drivers/pci/hotplug/acpiphp_glue.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ static LIST_HEAD(bridge_list);

static void handle_hotplug_event_bridge (acpi_handle, u32, void *);
static void handle_hotplug_event_func (acpi_handle, u32, void *);
static void acpiphp_sanitize_bus(struct pci_bus *bus);
static void acpiphp_set_hpp_values(acpi_handle handle, struct pci_bus *bus);


/*
* initialization & terminatation routines
Expand Down Expand Up @@ -796,8 +799,13 @@ static int enable_device(struct acpiphp_slot *slot)
}
}

pci_bus_size_bridges(bus);
pci_bus_assign_resources(bus);
acpiphp_sanitize_bus(bus);
pci_enable_bridges(bus);
pci_bus_add_devices(bus);
acpiphp_set_hpp_values(DEVICE_ACPI_HANDLE(&bus->self->dev), bus);
acpiphp_configure_ioapics(DEVICE_ACPI_HANDLE(&bus->self->dev));

/* associate pci_dev to our representation */
list_for_each (l, &slot->funcs) {
Expand Down

0 comments on commit 8e5dce3

Please sign in to comment.