diff options
author | Satoru Takeuchi <takeuchi_satoru@jp.fujitsu.com> | 2006-09-12 13:12:16 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-09-26 20:43:53 -0400 |
commit | 287af2fbe902206fabd42ade4e94f77db900083e (patch) | |
tree | f6d36a63eccab415ba3a917d74cd6476f441e430 /drivers/pci/hotplug/acpiphp_glue.c | |
parent | 753388c2e91c15c12550bb20dda05ce657cfdc3e (diff) |
acpiphp: set hpp values before starting devices
Currently acpiphp sets hpp values after starting devices, but
the values should be set before starting devices. This patch
fixes this bug.
Signed-off-by: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>
Signed-off-by: MUNEDA Takahiro <muneda.takahiro@jp.fujitsu.com>
Signed-off-by: Satoru Takeuchi <takeuchi_satoru@jp.fujitsu.com>
Signed-off-by: Kristen Carlson Accardi <kristen.c.accardi@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/pci/hotplug/acpiphp_glue.c')
-rw-r--r-- | drivers/pci/hotplug/acpiphp_glue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/hotplug/acpiphp_glue.c b/drivers/pci/hotplug/acpiphp_glue.c index be7e91662417..768d0f0f450a 100644 --- a/drivers/pci/hotplug/acpiphp_glue.c +++ b/drivers/pci/hotplug/acpiphp_glue.c | |||
@@ -1074,9 +1074,9 @@ static int enable_device(struct acpiphp_slot *slot) | |||
1074 | 1074 | ||
1075 | pci_bus_assign_resources(bus); | 1075 | pci_bus_assign_resources(bus); |
1076 | acpiphp_sanitize_bus(bus); | 1076 | acpiphp_sanitize_bus(bus); |
1077 | acpiphp_set_hpp_values(slot->bridge->handle, bus); | ||
1077 | pci_enable_bridges(bus); | 1078 | pci_enable_bridges(bus); |
1078 | pci_bus_add_devices(bus); | 1079 | pci_bus_add_devices(bus); |
1079 | acpiphp_set_hpp_values(slot->bridge->handle, bus); | ||
1080 | acpiphp_configure_ioapics(slot->bridge->handle); | 1080 | acpiphp_configure_ioapics(slot->bridge->handle); |
1081 | 1081 | ||
1082 | /* associate pci_dev to our representation */ | 1082 | /* associate pci_dev to our representation */ |