From owner-svn-src-all@FreeBSD.ORG Tue Dec 8 12:10:06 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 CC31F106568B; Tue, 8 Dec 2009 12:10:06 +0000 (UTC) (envelope-from nyan@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BAECC8FC21; Tue, 8 Dec 2009 12:10:06 +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 nB8CA665087361; Tue, 8 Dec 2009 12:10:06 GMT (envelope-from nyan@svn.freebsd.org) Received: (from nyan@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id nB8CA6ZS087359; Tue, 8 Dec 2009 12:10:06 GMT (envelope-from nyan@svn.freebsd.org) Message-Id: <200912081210.nB8CA6ZS087359@svn.freebsd.org> From: Takahashi Yoshihiro Date: Tue, 8 Dec 2009 12:10:06 +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: r200253 - in head/sys/boot/pc98: libpc98 loader 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: Tue, 08 Dec 2009 12:10:06 -0000 Author: nyan Date: Tue Dec 8 12:10:06 2009 New Revision: 200253 URL: http://svn.freebsd.org/changeset/base/200253 Log: MFi386: revision 200216 Various small whitespace and style fixes. Modified: head/sys/boot/pc98/libpc98/biosmem.c head/sys/boot/pc98/loader/main.c Modified: head/sys/boot/pc98/libpc98/biosmem.c ============================================================================== --- head/sys/boot/pc98/libpc98/biosmem.c Tue Dec 8 05:37:08 2009 (r200252) +++ head/sys/boot/pc98/libpc98/biosmem.c Tue Dec 8 12:10:06 2009 (r200253) @@ -35,7 +35,7 @@ __FBSDID("$FreeBSD$"); #include "btxv86.h" vm_offset_t memtop, memtop_copyin; -u_int32_t bios_basemem, bios_extmem; +uint32_t bios_basemem, bios_extmem; void bios_getmem(void) @@ -49,4 +49,3 @@ bios_getmem(void) memtop = memtop_copyin = 0x100000 + bios_extmem; } - Modified: head/sys/boot/pc98/loader/main.c ============================================================================== --- head/sys/boot/pc98/loader/main.c Tue Dec 8 05:37:08 2009 (r200252) +++ head/sys/boot/pc98/loader/main.c Tue Dec 8 12:10:06 2009 (r200253) @@ -96,7 +96,7 @@ main(void) */ bios_getmem(); -#ifdef LOADER_BZIP2_SUPPORT +#if defined(LOADER_BZIP2_SUPPORT) heap_top = PTOV(memtop_copyin); memtop_copyin -= 0x300000; heap_bottom = PTOV(memtop_copyin);