]> Git Repo - linux.git/commitdiff
drm/nouveau/volt/pwm/gk104: fix an off-by-one resulting in the voltage not being set
authorMartin Peres <[email protected]>
Thu, 5 Nov 2015 08:07:38 +0000 (09:07 +0100)
committerBen Skeggs <[email protected]>
Wed, 25 Nov 2015 05:37:45 +0000 (15:37 +1000)
Reported-by: Ilia Mirkin <[email protected]>
Signed-off-by: Martin Peres <[email protected]>
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.072284 seconds and 4 git commands to generate.