svn commit: r200253 - in head/sys/boot/pc98: libpc98 loader

Takahashi Yoshihiro nyan at FreeBSD.org
Tue Dec 8 12:10:06 UTC 2009


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);


More information about the svn-src-head mailing list