diff options
Diffstat (limited to 'drivers/pci/hotplug/acpiphp_glue.c')
-rw-r--r-- | drivers/pci/hotplug/acpiphp_glue.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/drivers/pci/hotplug/acpiphp_glue.c b/drivers/pci/hotplug/acpiphp_glue.c index b7342d2e819b..11a6117fb358 100644 --- a/drivers/pci/hotplug/acpiphp_glue.c +++ b/drivers/pci/hotplug/acpiphp_glue.c | |||
@@ -382,15 +382,11 @@ static acpi_status register_slot(acpi_handle handle, u32 lvl, void *data, | |||
382 | return AE_OK; | 382 | return AE_OK; |
383 | } | 383 | } |
384 | 384 | ||
385 | static struct acpiphp_bridge *acpiphp_handle_to_bridge(acpi_handle handle) | 385 | static struct acpiphp_bridge *acpiphp_dev_to_bridge(struct acpi_device *adev) |
386 | { | 386 | { |
387 | struct acpi_device *adev = acpi_bus_get_acpi_device(handle); | ||
388 | struct acpiphp_context *context; | 387 | struct acpiphp_context *context; |
389 | struct acpiphp_bridge *bridge = NULL; | 388 | struct acpiphp_bridge *bridge = NULL; |
390 | 389 | ||
391 | if (!adev) | ||
392 | return NULL; | ||
393 | |||
394 | acpi_lock_hp_context(); | 390 | acpi_lock_hp_context(); |
395 | context = acpiphp_get_context(adev); | 391 | context = acpiphp_get_context(adev); |
396 | if (context) { | 392 | if (context) { |
@@ -401,7 +397,6 @@ static struct acpiphp_bridge *acpiphp_handle_to_bridge(acpi_handle handle) | |||
401 | acpiphp_put_context(context); | 397 | acpiphp_put_context(context); |
402 | } | 398 | } |
403 | acpi_unlock_hp_context(); | 399 | acpi_unlock_hp_context(); |
404 | acpi_bus_put_acpi_device(adev); | ||
405 | return bridge; | 400 | return bridge; |
406 | } | 401 | } |
407 | 402 | ||
@@ -768,11 +763,11 @@ static void acpiphp_sanitize_bus(struct pci_bus *bus) | |||
768 | * ACPI event handlers | 763 | * ACPI event handlers |
769 | */ | 764 | */ |
770 | 765 | ||
771 | void acpiphp_check_host_bridge(acpi_handle handle) | 766 | void acpiphp_check_host_bridge(struct acpi_device *adev) |
772 | { | 767 | { |
773 | struct acpiphp_bridge *bridge; | 768 | struct acpiphp_bridge *bridge; |
774 | 769 | ||
775 | bridge = acpiphp_handle_to_bridge(handle); | 770 | bridge = acpiphp_dev_to_bridge(adev); |
776 | if (bridge) { | 771 | if (bridge) { |
777 | pci_lock_rescan_remove(); | 772 | pci_lock_rescan_remove(); |
778 | 773 | ||