From owner-svn-src-all@FreeBSD.ORG Mon Oct 19 21:01:48 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2290E106568F; Mon, 19 Oct 2009 21:01:48 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1271C8FC1C; Mon, 19 Oct 2009 21:01:48 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n9JL1l1I014917; Mon, 19 Oct 2009 21:01:47 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n9JL1k3E014911; Mon, 19 Oct 2009 21:01:46 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <200910192101.n9JL1k3E014911@svn.freebsd.org> From: Jung-uk Kim Date: Mon, 19 Oct 2009 21:01:44 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r198252 - head/sys/compat/x86bios X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Oct 2009 21:01:48 -0000 Author: jkim Date: Mon Oct 19 21:01:42 2009 New Revision: 198252 URL: http://svn.freebsd.org/changeset/base/198252 Log: Fix a copy-and-pasto in the previous commit. Modified: head/sys/compat/x86bios/x86bios.c Modified: head/sys/compat/x86bios/x86bios.c ============================================================================== --- head/sys/compat/x86bios/x86bios.c Mon Oct 19 20:58:10 2009 (r198251) +++ head/sys/compat/x86bios/x86bios.c Mon Oct 19 21:01:42 2009 (r198252) @@ -426,7 +426,7 @@ static __inline int x86bios_map_mem(void) { - x86bios_ivt = pmap_mapdev(X86BIOS_IVT_BASE, X86BIOS_IVT_SIZE); + x86bios_ivt = pmap_mapbios(X86BIOS_IVT_BASE, X86BIOS_IVT_SIZE); if (x86bios_ivt == NULL) return (1); x86bios_rom = pmap_mapdev(X86BIOS_ROM_BASE, X86BIOS_ROM_SIZE);