Commit f67a8ff5 authored by Roy Spliet's avatar Roy Spliet Committed by Ben Skeggs

drm/nouveau/pwr/fuc: Fix thinko in nouveau_memx_wait()

Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent f10e55c9
......@@ -107,7 +107,7 @@ nouveau_memx_wait(struct nouveau_memx *memx,
{
nv_debug(memx->ppwr, "R[%06x] & 0x%08x == 0x%08x, %d us\n",
addr, mask, data, nsec);
memx_cmd(memx, MEMX_WAIT, 4, (u32[]){ addr, ~mask, data, nsec });
memx_cmd(memx, MEMX_WAIT, 4, (u32[]){ addr, mask, data, nsec });
memx_out(memx); /* fuc can't handle multiple */
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment