mirror of
https://github.com/torvalds/linux.git
synced 2025-01-01 07:42:07 +00:00
drm/nouveau/volt/pwm/gk104: fix an off-by-one resulting in the voltage not being set
Reported-by: Ilia Mirkin <imirkin@alum.mit.edu> Signed-off-by: Martin Peres <martin.peres@free.fr>
This commit is contained in:
parent
f5e551873e
commit
ef0e9f5518
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user