diff options
author | Daniel J Blueman <daniel.blueman@gmail.com> | 2010-07-28 12:25:58 +0100 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2010-07-29 15:22:35 +1000 |
commit | 12e27be852db6d3e701e5563f394d6c7aa7aa778 (patch) | |
tree | eeb4ab3056acb4f0d3dee1ee95efb60732a60064 /drivers | |
parent | fc0f5ac8fe693d1b05f5a928cc48135d1c8b7f2e (diff) | |
download | linux-3.10-12e27be852db6d3e701e5563f394d6c7aa7aa778.tar.gz linux-3.10-12e27be852db6d3e701e5563f394d6c7aa7aa778.tar.bz2 linux-3.10-12e27be852db6d3e701e5563f394d6c7aa7aa778.zip |
drm/radeon/kms: fix radeon mid power profile reporting
Fix incorrectly reporting 'default' power profile, when it is set to 'mid'.
Signed-off-by: Daniel J Blueman <daniel.blueman@gmail.com>
Reviewed-by: Alex Deucher <alexdeucher@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpu/drm/radeon/radeon_pm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_pm.c b/drivers/gpu/drm/radeon/radeon_pm.c index 115d26b762c..3fa6984d989 100644 --- a/drivers/gpu/drm/radeon/radeon_pm.c +++ b/drivers/gpu/drm/radeon/radeon_pm.c @@ -333,6 +333,7 @@ static ssize_t radeon_get_pm_profile(struct device *dev, return snprintf(buf, PAGE_SIZE, "%s\n", (cp == PM_PROFILE_AUTO) ? "auto" : (cp == PM_PROFILE_LOW) ? "low" : + (cp == PM_PROFILE_MID) ? "mid" : (cp == PM_PROFILE_HIGH) ? "high" : "default"); } |