summaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2013-09-17 10:20:31 +1000
committerBen Skeggs <bskeggs@redhat.com>2013-09-18 00:16:29 +1000
commit6b19e47dc11ea567ce330098fe9db3b7337e9f34 (patch)
tree073f5fd8f0a37653f605f9ca1bbd7990a1e21f84 /drivers/gpu
parentfc1620883af8cbc10bfb1a4ef2eb4e8113243012 (diff)
downloadop-kernel-dev-6b19e47dc11ea567ce330098fe9db3b7337e9f34.zip
op-kernel-dev-6b19e47dc11ea567ce330098fe9db3b7337e9f34.tar.gz
drm/nouveau/bios/init: fix thinko in INIT_CONFIGURE_MEM
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/nouveau/core/subdev/bios/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/core/subdev/bios/init.c b/drivers/gpu/drm/nouveau/core/subdev/bios/init.c
index cede3d6..57cda2a 100644
--- a/drivers/gpu/drm/nouveau/core/subdev/bios/init.c
+++ b/drivers/gpu/drm/nouveau/core/subdev/bios/init.c
@@ -1451,7 +1451,7 @@ init_configure_mem(struct nvbios_init *init)
data = init_rdvgai(init, 0x03c4, 0x01);
init_wrvgai(init, 0x03c4, 0x01, data | 0x20);
- while ((addr = nv_ro32(bios, sdata)) != 0xffffffff) {
+ for (; (addr = nv_ro32(bios, sdata)) != 0xffffffff; sdata += 4) {
switch (addr) {
case 0x10021c: /* CKE_NORMAL */
case 0x1002d0: /* CMD_REFRESH */
OpenPOWER on IntegriCloud