diff options
| author | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2009-12-08 12:10:06 +0000 |
|---|---|---|
| committer | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2009-12-08 12:10:06 +0000 |
| commit | e61de1d24c9c068172eb6c268223301f9cd1accc (patch) | |
| tree | 994392d05f574ca234d7d6a1dd95e6d71025a876 /sys/boot | |
| parent | 23e876b121794109d185b69c25a2ee30f77569f7 (diff) | |
Notes
Diffstat (limited to 'sys/boot')
| -rw-r--r-- | sys/boot/pc98/libpc98/biosmem.c | 3 | ||||
| -rw-r--r-- | sys/boot/pc98/loader/main.c | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/sys/boot/pc98/libpc98/biosmem.c b/sys/boot/pc98/libpc98/biosmem.c index b450922e3d2c..aec3cbb71d61 100644 --- a/sys/boot/pc98/libpc98/biosmem.c +++ b/sys/boot/pc98/libpc98/biosmem.c @@ -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; } - diff --git a/sys/boot/pc98/loader/main.c b/sys/boot/pc98/loader/main.c index 6573990faa36..b1e7dd2067c3 100644 --- a/sys/boot/pc98/loader/main.c +++ b/sys/boot/pc98/loader/main.c @@ -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); |
