aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/fb
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2010-08-25 22:48:18 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2010-08-25 22:48:18 +0000
commit2b137859310f69bd48e2f5784336c3ae4fa70d6a (patch)
tree1986372662be4f0a0b523814be7a7bf8b19532bc /sys/dev/fb
parenta73f383ee91d6e75879bc16d7dd2a91a0630b369 (diff)
Notes
Diffstat (limited to 'sys/dev/fb')
-rw-r--r--sys/dev/fb/vesa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/fb/vesa.c b/sys/dev/fb/vesa.c
index 96a8aaa8c9283..5fa4eb42ef2b1 100644
--- a/sys/dev/fb/vesa.c
+++ b/sys/dev/fb/vesa.c
@@ -816,7 +816,7 @@ vesa_bios_init(void)
}
if (bootverbose)
printf("VESA: INT 0x10 vector 0x%04x:0x%04x\n",
- X86BIOS_PHYSTOSEG(offs), X86BIOS_PHYSTOOFF(offs));
+ (offs >> 16) & 0xffff, offs & 0xffff);
x86bios_init_regs(&regs);
regs.R_AX = 0x4f00;