Skip to content

Commit

Permalink
GPU/i915: Fix acpi_bus_get_device() check in drivers/gpu/drm/i915/int…
Browse files Browse the repository at this point in the history
…el_opregion.c

acpi_bus_get_device() returns int not acpi_status.

The patch change not to apply ACPI_FAILURE() to the return value of
acpi_bus_get_device().

Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
  • Loading branch information
Yasuaki Ishimatsu authored and Daniel Vetter committed Feb 1, 2013
1 parent 209d521 commit 7d37bea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/i915/intel_opregion.c
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ static void intel_didl_outputs(struct drm_device *dev)
int i = 0;

handle = DEVICE_ACPI_HANDLE(&dev->pdev->dev);
if (!handle || ACPI_FAILURE(acpi_bus_get_device(handle, &acpi_dev)))
if (!handle || acpi_bus_get_device(handle, &acpi_dev))
return;

if (acpi_is_video_device(acpi_dev))
Expand Down

0 comments on commit 7d37bea

Please sign in to comment.