nvc0: fix nve4 linear copies

This commit is contained in:
Christoph Bumiller 2012-04-16 00:36:35 +02:00
parent 1ce9205f79
commit 847c898702
1 changed files with 2 additions and 1 deletions

View File

@ -320,7 +320,8 @@ nve4_m2mf_copy_linear(struct nouveau_context *nv,
PUSH_DATA (push, dst->offset + dstoff);
BEGIN_NVC0(push, SUBC_COPY(0x0418), 1);
PUSH_DATA (push, size);
IMMED_NVC0(push, SUBC_COPY(0x0300), 0x6);
BEGIN_NVC0(push, SUBC_COPY(0x0300), 1);
PUSH_DATA (push, 0x186);
nouveau_bufctx_reset(bctx, 0);
}