aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2011-04-20 00:15:49 -0400
committerBen Skeggs <bskeggs@redhat.com>2011-05-15 20:50:52 -0400
commitbfb61f43b37158d432a1897bc2a4bbbd41215fae (patch)
tree530d0ce6800a04f5a4107c3802afbcf3594bf36c /drivers/gpu
parent047d2df54cb866f13014cb566eac61449bf89a29 (diff)
drm/nva3/pm: allow use of divisor 16
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/nouveau/nva3_pm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/nva3_pm.c b/drivers/gpu/drm/nouveau/nva3_pm.c
index 5285b9813700..bc357c850dbd 100644
--- a/drivers/gpu/drm/nouveau/nva3_pm.c
+++ b/drivers/gpu/drm/nouveau/nva3_pm.c
@@ -128,7 +128,7 @@ nva3_pm_clock_pre(struct drm_device *dev, struct nouveau_pm_level *perflvl,
128 /* If target clock is within [-2, 3) MHz of a divisor, we'll 128 /* If target clock is within [-2, 3) MHz of a divisor, we'll
129 * use that instead of calculating MNP values 129 * use that instead of calculating MNP values
130 */ 130 */
131 pll->new_div = ((limits.refclk * 2) / (khz - 2999)) & 0x0f; 131 pll->new_div = min((limits.refclk * 2) / (khz - 2999), 16);
132 if (pll->new_div) { 132 if (pll->new_div) {
133 diff = khz - ((limits.refclk * 2) / pll->new_div); 133 diff = khz - ((limits.refclk * 2) / pll->new_div);
134 if (diff < -2000 || diff >= 3000) 134 if (diff < -2000 || diff >= 3000)