mirror of https://gitee.com/openkylin/linux.git
drm/nouveau/bios/init: fix thinko in INIT_CONFIGURE_MEM
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
parent
fc1620883a
commit
6b19e47dc1
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue