1
0
Fork 0

ACPI: sysfs eject support for ACPI scan handlers

Changed sysfs eject, acpi_eject_store(), so that it doesn't return
error codes for devices nodes with ACPI scan handlers attached and
no ACPI drivers.

[rjw: Changelog]
Signed-off-by: Toshi Kani <toshi.kani@hp.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
hifive-unleashed-5.1
Toshi Kani 2013-02-07 12:50:53 +01:00 committed by Rafael J. Wysocki
parent 87b85b3c8a
commit ce7685ad76
1 changed files with 1 additions and 1 deletions

View File

@ -203,7 +203,7 @@ acpi_eject_store(struct device *d, struct device_attribute *attr,
return -EINVAL;
}
#ifndef FORCE_EJECT
if (acpi_device->driver == NULL) {
if (!acpi_device->driver && !acpi_device->handler) {
ret = -ENODEV;
goto err;
}