drm/nouveau/mpeg: mthd returns true on success now
Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
Fixes: 590801c1a3
("drm/nouveau/mpeg: remove dependence on namedb/engctx lookup")
Cc: stable@vger.kernel.org # v4.3+
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
parent
130e35e4bb
commit
83bce9c2ba
|
@ -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…
Reference in New Issue