Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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



Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent f10e55c9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 */
}