ACPI / PMIC: intel: Drop double removal of address space handler

There is no need to remove address space handler twice,
because removal is idempotent.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
Andy Shevchenko 2019-07-03 04:17:34 +03:00 committed by Rafael J. Wysocki
parent 6fbc7275c7
commit 417a564c65

View file

@ -284,8 +284,6 @@ int intel_pmic_install_opregion_handler(struct device *dev, acpi_handle handle,
intel_pmic_thermal_handler, intel_pmic_thermal_handler,
NULL, opregion); NULL, opregion);
if (ACPI_FAILURE(status)) { if (ACPI_FAILURE(status)) {
acpi_remove_address_space_handler(handle, PMIC_POWER_OPREGION_ID,
intel_pmic_power_handler);
ret = -ENODEV; ret = -ENODEV;
goto out_remove_power_handler; goto out_remove_power_handler;
} }