summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/vesa.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/vesa.c b/src/vesa.c
index 564bb06..5b9ccb0 100644
--- a/src/vesa.c
+++ b/src/vesa.c
@@ -1304,9 +1304,10 @@ VESAMapVidMem(ScrnInfoPtr pScrn)
#endif
xf86DrvMsgVerb(pScrn->scrnIndex, X_INFO, DEBUG_VERB,
- "virtual address = %p,\n"
+ "virtual address = %p, VGAbase = %p\n"
"\tphysical address = 0x%lx, size = %ld\n",
- pVesa->base, pScrn->memPhysBase, pVesa->mapSize);
+ pVesa->base, pVesa->VGAbase,
+ pScrn->memPhysBase, pVesa->mapSize);
return (pVesa->base != NULL);
}