Remove unneeded variables.

This commit is contained in:
matt 2009-12-16 19:02:03 +00:00
parent 271741bef7
commit 5c3604e034
1 changed files with 5 additions and 13 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.45 2009/11/27 03:23:13 rmind Exp $ */ /* $NetBSD: machdep.c,v 1.46 2009/12/16 19:02:03 matt Exp $ */
/* /*
* Copyright 2000, 2001 * Copyright 2000, 2001
@ -58,7 +58,7 @@
*/ */
#include <sys/cdefs.h> #include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.45 2009/11/27 03:23:13 rmind Exp $"); __KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.46 2009/12/16 19:02:03 matt Exp $");
#include "opt_ddb.h" #include "opt_ddb.h"
#include "opt_execfmt.h" #include "opt_execfmt.h"
@ -158,9 +158,7 @@ mach_init(long fwhandle, long magic, long bootdata, long reserved)
{ {
void *kernend; void *kernend;
u_long first, last; u_long first, last;
struct pcb *pcb0;
extern char edata[], end[]; extern char edata[], end[];
vaddr_t v;
int i; int i;
uint32_t config; uint32_t config;
@ -317,18 +315,12 @@ mach_init(long fwhandle, long magic, long bootdata, long reserved)
*/ */
mips_init_msgbuf(); mips_init_msgbuf();
pmap_bootstrap();
/* /*
* Allocate uarea for lwp0 and set it. * Allocate uarea for lwp0 and set it.
*/ */
v = pmap_steal_memory(USPACE, NULL, NULL); mips_init_lwp0_uarea();
uvm_lwp_setuarea(&lwp0, v);
pcb0 = lwp_getpcb(&lwp0);
pcb0->pcb_context[11] = MIPS_INT_MASK | MIPS_SR_INT_IE; /* SR */
lwp0.l_md.md_regs = (struct frame *)(v + USPACE) - 1;
pmap_bootstrap();
/* /*
* Initialize debuggers, and break into them, if appropriate. * Initialize debuggers, and break into them, if appropriate.