diff options
Diffstat (limited to 'drivers/acpi/device_pm.c')
| -rw-r--r-- | drivers/acpi/device_pm.c | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/acpi/device_pm.c b/drivers/acpi/device_pm.c index f09dc987cf1..c6ff606c6d5 100644 --- a/drivers/acpi/device_pm.c +++ b/drivers/acpi/device_pm.c @@ -358,8 +358,7 @@ static struct acpi_device *acpi_dev_pm_get_node(struct device *dev)  	acpi_handle handle = DEVICE_ACPI_HANDLE(dev);  	struct acpi_device *adev; -	return handle && ACPI_SUCCESS(acpi_bus_get_device(handle, &adev)) ? -		adev : NULL; +	return handle && !acpi_bus_get_device(handle, &adev) ? adev : NULL;  }  /**  |