Skip to content

Commit

Permalink
drm/nv50: also report errors in MP1/MP2 when they happen.
Browse files Browse the repository at this point in the history
Signed-off-by: Maxim Levitsky <maximlevitsky@gmail.com>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
  • Loading branch information
Maxim Levitsky authored and Ben Skeggs committed Dec 21, 2011
1 parent b29caa5 commit c983e6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/gpu/drm/nouveau/nv50_graph.c
Original file line number Diff line number Diff line change
Expand Up @@ -616,9 +616,9 @@ nv50_pgraph_tp_trap(struct drm_device *dev, int type, uint32_t ustatus_old,
}
break;
case 7: /* MP error */
if (ustatus & 0x00010000) {
if (ustatus & 0x04030000) {
nv50_pgraph_mp_trap(dev, i, display);
ustatus &= ~0x00010000;
ustatus &= ~0x04030000;
}
break;
case 8: /* TPDMA error */
Expand Down

0 comments on commit c983e6f

Please sign in to comment.