diff options
author | Huang Rui <ray.huang@amd.com> | 2017-05-31 11:35:44 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2017-06-06 16:58:56 -0400 |
commit | 13052be59a301ab4cf10f614f0abdbce6b384c49 (patch) | |
tree | 0c15ce44f243f099c16e4a93d95c11f47b460ef0 /drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c | |
parent | d5583d4f69c4db863d4d56ba2a3ec2333220f864 (diff) |
drm/amdgpu: export mmhub get clockgating into gmc
Signed-off-by: Huang Rui <ray.huang@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Acked-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c b/drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c index 7a7177b423e8..d95380efcf8c 100644 --- a/drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c +++ b/drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c | |||
@@ -569,9 +569,8 @@ static int mmhub_v1_0_set_clockgating_state(void *handle, | |||
569 | return 0; | 569 | return 0; |
570 | } | 570 | } |
571 | 571 | ||
572 | static void mmhub_v1_0_get_clockgating_state(void *handle, u32 *flags) | 572 | void mmhub_v1_0_get_clockgating(struct amdgpu_device *adev, u32 *flags) |
573 | { | 573 | { |
574 | struct amdgpu_device *adev = (struct amdgpu_device *)handle; | ||
575 | int data; | 574 | int data; |
576 | 575 | ||
577 | if (amdgpu_sriov_vf(adev)) | 576 | if (amdgpu_sriov_vf(adev)) |
@@ -609,7 +608,6 @@ const struct amd_ip_funcs mmhub_v1_0_ip_funcs = { | |||
609 | .soft_reset = mmhub_v1_0_soft_reset, | 608 | .soft_reset = mmhub_v1_0_soft_reset, |
610 | .set_clockgating_state = mmhub_v1_0_set_clockgating_state, | 609 | .set_clockgating_state = mmhub_v1_0_set_clockgating_state, |
611 | .set_powergating_state = mmhub_v1_0_set_powergating_state, | 610 | .set_powergating_state = mmhub_v1_0_set_powergating_state, |
612 | .get_clockgating_state = mmhub_v1_0_get_clockgating_state, | ||
613 | }; | 611 | }; |
614 | 612 | ||
615 | const struct amdgpu_ip_block_version mmhub_v1_0_ip_block = | 613 | const struct amdgpu_ip_block_version mmhub_v1_0_ip_block = |