diff options
author | Mike Larkin <mlarkin@cvs.openbsd.org> | 2015-01-27 02:09:08 +0000 |
---|---|---|
committer | Mike Larkin <mlarkin@cvs.openbsd.org> | 2015-01-27 02:09:08 +0000 |
commit | 6538077b9eeec9171239932ee8b7a8d09f6799ef (patch) | |
tree | 44d35ffab6a62f5ca2d5f9baf11abb21be8baad4 /sys | |
parent | 7b8b598b4d81c29558fef884440b336ec9f94602 (diff) |
Remove an unused variable whose functionality was moved to locore long ago.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/i386/i386/pmap.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/arch/i386/i386/pmap.c b/sys/arch/i386/i386/pmap.c index 8f003520234..1e7957fbee3 100644 --- a/sys/arch/i386/i386/pmap.c +++ b/sys/arch/i386/i386/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.166 2015/01/09 03:43:52 mlarkin Exp $ */ +/* $OpenBSD: pmap.c,v 1.167 2015/01/27 02:09:07 mlarkin Exp $ */ /* $NetBSD: pmap.c,v 1.91 2000/06/02 17:46:37 thorpej Exp $ */ /* @@ -315,9 +315,6 @@ static pt_entry_t *csrc_pte, *cdst_pte, *zero_pte, *ptp_pte, *flsh_pte; static caddr_t csrcp, cdstp, zerop, ptpp, flshp; caddr_t vmmap; /* XXX: used by mem.c... it should really uvm_map_reserve it */ -/* stuff to fix the pentium f00f bug */ -extern vaddr_t pentium_idt_vaddr; - /* * local prototypes */ |