Always ErrorF output debugging info when doing BIOS calls, including file/line.

This commit is contained in:
Eric Anholt 2006-02-27 14:12:50 -08:00 committed by Eric Anholt
parent 767944e378
commit 9838f63991
1 changed files with 1 additions and 1 deletions

View File

@ -101,8 +101,8 @@ extern void I830DPRINTF_stub(const char *filename, int line,
/* BIOS debug macro */
#define xf86ExecX86int10_wrapper(pInt, pScrn) do { \
ErrorF("Executing (ax == 0x%x) BIOS call at %s:%d\n", pInt->ax, __FILE__, __LINE__); \
if (I810_DEBUG & DEBUG_VERBOSE_BIOS) { \
ErrorF("\n\n\n\nExecuting (ax == 0x%x) BIOS call\n", pInt->ax); \
ErrorF("Checking Error state before execution\n"); \
PrintErrorState(pScrn); \
} \