From 9838f639911e8c165ab615fdd9a00e02fa4b3f8a Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Mon, 27 Feb 2006 14:12:50 -0800 Subject: [PATCH] Always ErrorF output debugging info when doing BIOS calls, including file/line. --- src/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common.h b/src/common.h index bb89dd25..e9debe50 100644 --- a/src/common.h +++ b/src/common.h @@ -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); \ } \