Browse Source

drm/nouveau/pm: fix missing volt changes when boot voltage is undefined

Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Ben Skeggs 13 years ago
parent
commit
d2edab4acf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/gpu/drm/nouveau/nouveau_pm.c

+ 1 - 1
drivers/gpu/drm/nouveau/nouveau_pm.c

@@ -117,7 +117,7 @@ nouveau_pm_perflvl_aux(struct drm_device *dev, struct nouveau_pm_level *perflvl,
 	}
 
 	if (pm->voltage.supported && pm->voltage_set) {
-		if (a->volt_min && b->volt_min && b->volt_min > a->volt_min) {
+		if (perflvl->volt_min && b->volt_min > a->volt_min) {
 			ret = pm->voltage_set(dev, perflvl->volt_min);
 			if (ret) {
 				NV_ERROR(dev, "voltage set failed: %d\n", ret);