Commit 7c1f6bbd authored by Ben Skeggs's avatar Ben Skeggs

drm/nouveau/kms/gv100-: wait for less NVD pushbuf space for core updates without notify

Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent ef674b68
......@@ -54,7 +54,7 @@ corec37d_update(struct nv50_core *core, u32 *interlock, bool ntfy)
struct nvif_push *push = core->chan.push;
int ret;
if ((ret = PUSH_WAIT(push, 9)))
if ((ret = PUSH_WAIT(push, (ntfy ? 2 * 2 : 0) + 5)))
return ret;
if (ntfy) {
......
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