diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1996-04-28 04:02:40 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1996-04-28 04:02:40 +0000 |
commit | a4ab4cd1b53ad29a7cb6a3deb0b47f39d8aad62b (patch) | |
tree | 7bc7273eb797b1ad78c65ddcfe00a5022c1b5b47 /sys/arch/mvme68k/stand/bootst | |
parent | 6d7449dfb93e62bcce0b1a055dbb8072ce9a64fe (diff) |
Fix compation error in bootst.c (mvme68k/stand)
This was a result of code not being fully removed that
was used with a different version of bootloader/kernel.
A now useless check has been removed.
-dsr
Diffstat (limited to 'sys/arch/mvme68k/stand/bootst')
-rw-r--r-- | sys/arch/mvme68k/stand/bootst/bootst.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/arch/mvme68k/stand/bootst/bootst.c b/sys/arch/mvme68k/stand/bootst/bootst.c index 5b346aeaeba..c07d07c7866 100644 --- a/sys/arch/mvme68k/stand/bootst/bootst.c +++ b/sys/arch/mvme68k/stand/bootst/bootst.c @@ -178,10 +178,6 @@ load_kern(pbugargs) status = 0; addr = (char *) (pexec->a_entry & ~0x0FFF); - if ((int) pexec->a_entry != (int) addr + 0x22) { - (int) addr + 0x22, pexec->a_entry); - printf("kernel loaded at %x\n", addr); - } bcopy(&buf, addr, 512); /* 2nd block of exe */ addr += 512; |