drm/nouveau/volt/pwm/gk104: fix an off-by-one resulting in the voltage not being set
[deliverable/linux.git] / drivers / gpu / drm / nouveau / nvkm / subdev / volt / gk104.c
index b61509e26ec9f5d5192540c624e5c4ebdc96e087..b735173a18ff3d055dcfafcae2cd17c58b6a6c4a 100644 (file)
@@ -59,7 +59,7 @@ gk104_volt_set(struct nvkm_volt *base, u32 uv)
        duty = (uv - bios->base) * div / bios->pwm_range;
 
        nvkm_wr32(device, 0x20340, div);
-       nvkm_wr32(device, 0x20344, 0x8000000 | duty);
+       nvkm_wr32(device, 0x20344, 0x80000000 | duty);
 
        return 0;
 }
This page took 0.025265 seconds and 5 git commands to generate.