Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 25 Aug 2010 22:48:18 +0000 (UTC)
From:      Jung-uk Kim <jkim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r211829 - head/sys/dev/fb
Message-ID:  <201008252248.o7PMmIb8024806@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jkim
Date: Wed Aug 25 22:48:18 2010
New Revision: 211829
URL: http://svn.freebsd.org/changeset/base/211829

Log:
  Fix a debugging message under bootverbose.  This address is not linear.

Modified:
  head/sys/dev/fb/vesa.c

Modified: head/sys/dev/fb/vesa.c
==============================================================================
--- head/sys/dev/fb/vesa.c	Wed Aug 25 22:19:52 2010	(r211828)
+++ head/sys/dev/fb/vesa.c	Wed Aug 25 22:48:18 2010	(r211829)
@@ -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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201008252248.o7PMmIb8024806>