diff options
author | Keith Packard <keithp@neko.keithp.com> | 2006-11-22 15:36:43 -0800 |
---|---|---|
committer | Keith Packard <keithp@neko.keithp.com> | 2006-11-22 15:36:43 -0800 |
commit | 850e3652f4d5bb57f3c4ccb9cf29e2c75fecba9d (patch) | |
tree | 321b0a37a782abdabd74607364fe69a894fdc592 | |
parent | 659e3db925de91954421f7f33c072576dfefcc4a (diff) |
Note which pipe has failed to be configured for VBlank interrupt
-rw-r--r-- | src/i830_dri.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i830_dri.c b/src/i830_dri.c index 6b17f466..3b029185 100644 --- a/src/i830_dri.c +++ b/src/i830_dri.c @@ -1526,7 +1526,7 @@ I830DRISetVBlankInterrupt (ScrnInfoPtr pScrn, Bool on) } if (drmCommandWrite(pI830->drmSubFD, DRM_I830_SET_VBLANK_PIPE, &pipe, sizeof (pipe))) { - xf86DrvMsg(pScrn->scrnIndex, X_ERROR, "I830 Vblank Pipe Setup Failed\n"); + xf86DrvMsg(pScrn->scrnIndex, X_ERROR, "I830 Vblank Pipe Setup Failed %d\n", pipe.pipe); return FALSE; } } |