diff options
author | Tom Cosgrove <tom@cvs.openbsd.org> | 2005-05-03 13:18:06 +0000 |
---|---|---|
committer | Tom Cosgrove <tom@cvs.openbsd.org> | 2005-05-03 13:18:06 +0000 |
commit | 0abf960e363302baa2c0397873d3df08b798e323 (patch) | |
tree | cec6879437eb2cc5896e05db845f34f7e71d58f7 /sys/arch/amd64/stand/libsa | |
parent | c52f261e4b7932fc610c4eb688acc22544d1dca3 (diff) |
The return value from getEBDAaddr() (info) is not used in bios_E820(),
so nuke it. amd64 no longer needs biosprobe.c listed in SRCS. Trims
100 bytes from the boot blocks.
Bump versions on boot, cdboot and pxeboot, as I'm getting cautious in
my old age.
ok weingart@
Diffstat (limited to 'sys/arch/amd64/stand/libsa')
-rw-r--r-- | sys/arch/amd64/stand/libsa/memprobe.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/amd64/stand/libsa/memprobe.c b/sys/arch/amd64/stand/libsa/memprobe.c index 312fc1e6b91..58084c5f7d9 100644 --- a/sys/arch/amd64/stand/libsa/memprobe.c +++ b/sys/arch/amd64/stand/libsa/memprobe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: memprobe.c,v 1.2 2005/05/03 13:02:45 tom Exp $ */ +/* $OpenBSD: memprobe.c,v 1.3 2005/05/03 13:18:05 tom Exp $ */ /* * Copyright (c) 1997-1999 Michael Shalayeff @@ -67,9 +67,7 @@ checkA20(void) static __inline bios_memmap_t * bios_E820(bios_memmap_t *mp) { - void *info; int rc, off = 0, sig, gotcha = 0; - info = getEBDAaddr(); do { BIOS_regs.biosr_es = ((u_int)(mp) >> 4); |