|
@@ -463,8 +463,8 @@ static int acpi_generic_hotplug_event(struct acpi_device *adev, u32 type)
|
|
|
dev_info(&adev->dev, "Eject disabled\n");
|
|
|
return -EPERM;
|
|
|
}
|
|
|
- acpi_evaluate_hotplug_ost(adev->handle, ACPI_NOTIFY_EJECT_REQUEST,
|
|
|
- ACPI_OST_SC_EJECT_IN_PROGRESS, NULL);
|
|
|
+ acpi_evaluate_ost(adev->handle, ACPI_NOTIFY_EJECT_REQUEST,
|
|
|
+ ACPI_OST_SC_EJECT_IN_PROGRESS, NULL);
|
|
|
return acpi_scan_hot_remove(adev);
|
|
|
}
|
|
|
return -EINVAL;
|
|
@@ -512,7 +512,7 @@ void acpi_device_hotplug(void *data, u32 src)
|
|
|
ost_code = ACPI_OST_SC_SUCCESS;
|
|
|
|
|
|
err_out:
|
|
|
- acpi_evaluate_hotplug_ost(adev->handle, src, ost_code, NULL);
|
|
|
+ acpi_evaluate_ost(adev->handle, src, ost_code, NULL);
|
|
|
|
|
|
out:
|
|
|
acpi_bus_put_acpi_device(adev);
|
|
@@ -572,8 +572,8 @@ acpi_eject_store(struct device *d, struct device_attribute *attr,
|
|
|
return count;
|
|
|
|
|
|
put_device(&acpi_device->dev);
|
|
|
- acpi_evaluate_hotplug_ost(acpi_device->handle, ACPI_OST_EC_OSPM_EJECT,
|
|
|
- ACPI_OST_SC_NON_SPECIFIC_FAILURE, NULL);
|
|
|
+ acpi_evaluate_ost(acpi_device->handle, ACPI_OST_EC_OSPM_EJECT,
|
|
|
+ ACPI_OST_SC_NON_SPECIFIC_FAILURE, NULL);
|
|
|
return status == AE_NO_MEMORY ? -ENOMEM : -EAGAIN;
|
|
|
}
|
|
|
|