drm/nouveau/mpeg: mthd returns true on success now
commit 83bce9c2baa51e439480a713119a73d3c8b61083 upstream. Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu> Fixes: 590801c1a3 ("drm/nouveau/mpeg: remove dependence on namedb/engctx lookup") Signed-off-by: Ben Skeggs <bskeggs@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
975a7ea950
commit
b29a17524b
@ -198,7 +198,7 @@ nv31_mpeg_intr(struct nvkm_engine *engine)
|
||||
}
|
||||
|
||||
if (type == 0x00000010) {
|
||||
if (!nv31_mpeg_mthd(mpeg, mthd, data))
|
||||
if (nv31_mpeg_mthd(mpeg, mthd, data))
|
||||
show &= ~0x01000000;
|
||||
}
|
||||
}
|
||||
|
@ -172,7 +172,7 @@ nv44_mpeg_intr(struct nvkm_engine *engine)
|
||||
}
|
||||
|
||||
if (type == 0x00000010) {
|
||||
if (!nv44_mpeg_mthd(subdev->device, mthd, data))
|
||||
if (nv44_mpeg_mthd(subdev->device, mthd, data))
|
||||
show &= ~0x01000000;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user