Commit 29ccf759 authored by Dave Airlie's avatar Dave Airlie

drm/amdgpu: fix warning with powerplay disabled.

This just fixes a warning when you disable powerplay.
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent fa6bcad7
...@@ -218,9 +218,9 @@ static int amdgpu_pp_hw_fini(void *handle) ...@@ -218,9 +218,9 @@ static int amdgpu_pp_hw_fini(void *handle)
static void amdgpu_pp_late_fini(void *handle) static void amdgpu_pp_late_fini(void *handle)
{ {
#ifdef CONFIG_DRM_AMD_POWERPLAY
struct amdgpu_device *adev = (struct amdgpu_device *)handle; struct amdgpu_device *adev = (struct amdgpu_device *)handle;
#ifdef CONFIG_DRM_AMD_POWERPLAY
if (adev->pp_enabled) { if (adev->pp_enabled) {
amdgpu_pm_sysfs_fini(adev); amdgpu_pm_sysfs_fini(adev);
amd_powerplay_fini(adev->powerplay.pp_handle); amd_powerplay_fini(adev->powerplay.pp_handle);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment