projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
947bfc8
)
drm/radeon/kms: fix legacy get_engine/memory clock
author
Alex Deucher
<alexdeucher@gmail.com>
Fri, 22 Jan 2010 00:28:18 +0000
(19:28 -0500)
committer
Dave Airlie
<airlied@redhat.com>
Sun, 24 Jan 2010 07:25:38 +0000
(17:25 +1000)
Fix a bad shift in the post div.
Should fix fdo bug 26145
Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/radeon/radeon_clocks.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/gpu/drm/radeon/radeon_clocks.c
b/drivers/gpu/drm/radeon/radeon_clocks.c
index 812f24dbc2a8c58a0cfe566cc0fe81baaab382d8..73c4405bf42f7af190119166a4404d8f6d31075a 100644
(file)
--- a/
drivers/gpu/drm/radeon/radeon_clocks.c
+++ b/
drivers/gpu/drm/radeon/radeon_clocks.c
@@
-56,7
+56,7
@@
uint32_t radeon_legacy_get_engine_clock(struct radeon_device *rdev)
else if (post_div == 3)
sclk >>= 2;
else if (post_div == 4)
- sclk >>=
4
;
+ sclk >>=
3
;
return sclk;
}
@@
-86,7
+86,7
@@
uint32_t radeon_legacy_get_memory_clock(struct radeon_device *rdev)
else if (post_div == 3)
mclk >>= 2;
else if (post_div == 4)
- mclk >>=
4
;
+ mclk >>=
3
;
return mclk;
}