diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2014-09-30 10:41:15 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2015-03-19 12:26:31 -0400 |
commit | da6472f349ec3511299a761803a65d3913ffed10 (patch) | |
tree | 76d11e99c4a4ba2dc284146a903a9d7641f16759 /drivers/gpu/drm/radeon/btc_dpm.c | |
parent | 99550ee9e803d9e2cd405bdcfb3d094ea227eb58 (diff) |
drm/radeon: remove some rv7xx leftovers from btc dpm code
Some copy paste leftovers. No functional change.
Tested-by: Marek Olšák <marek.olsak@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/radeon/btc_dpm.c')
-rw-r--r-- | drivers/gpu/drm/radeon/btc_dpm.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/drivers/gpu/drm/radeon/btc_dpm.c b/drivers/gpu/drm/radeon/btc_dpm.c index 04afb0047423..69556f5e247e 100644 --- a/drivers/gpu/drm/radeon/btc_dpm.c +++ b/drivers/gpu/drm/radeon/btc_dpm.c | |||
@@ -2751,13 +2751,8 @@ void btc_dpm_debugfs_print_current_performance_level(struct radeon_device *rdev, | |||
2751 | else /* current_index == 2 */ | 2751 | else /* current_index == 2 */ |
2752 | pl = &ps->high; | 2752 | pl = &ps->high; |
2753 | seq_printf(m, "uvd vclk: %d dclk: %d\n", rps->vclk, rps->dclk); | 2753 | seq_printf(m, "uvd vclk: %d dclk: %d\n", rps->vclk, rps->dclk); |
2754 | if (rdev->family >= CHIP_CEDAR) { | 2754 | seq_printf(m, "power level %d sclk: %u mclk: %u vddc: %u vddci: %u\n", |
2755 | seq_printf(m, "power level %d sclk: %u mclk: %u vddc: %u vddci: %u\n", | 2755 | current_index, pl->sclk, pl->mclk, pl->vddc, pl->vddci); |
2756 | current_index, pl->sclk, pl->mclk, pl->vddc, pl->vddci); | ||
2757 | } else { | ||
2758 | seq_printf(m, "power level %d sclk: %u mclk: %u vddc: %u\n", | ||
2759 | current_index, pl->sclk, pl->mclk, pl->vddc); | ||
2760 | } | ||
2761 | } | 2756 | } |
2762 | } | 2757 | } |
2763 | 2758 | ||