Remove unused variable.

Minor style nits.
This commit is contained in:
Warner Losh 2009-01-16 08:30:22 +00:00
parent 3a91ee716b
commit bf969a35eb

View File

@ -218,8 +218,10 @@ cpu_halt(void)
; ;
} }
#ifdef PORT_TO_JMIPS SYSCTL_STRUCT(_machdep, CPU_BOOTINFO, bootinfo, CTLFLAG_RD, &bootinfo,
bootinfo, "Bootinfo struct: kernel filename, BIOS harddisk geometry, etc");
#ifdef PORT_TO_JMIPS
static int static int
sysctl_machdep_adjkerntz(SYSCTL_HANDLER_ARGS) sysctl_machdep_adjkerntz(SYSCTL_HANDLER_ARGS)
{ {
@ -228,19 +230,8 @@ sysctl_machdep_adjkerntz(SYSCTL_HANDLER_ARGS)
SYSCTL_PROC(_machdep, CPU_ADJKERNTZ, adjkerntz, CTLTYPE_INT | CTLFLAG_RW, SYSCTL_PROC(_machdep, CPU_ADJKERNTZ, adjkerntz, CTLTYPE_INT | CTLFLAG_RW,
&adjkerntz, 0, sysctl_machdep_adjkerntz, "I", &adjkerntz, 0, sysctl_machdep_adjkerntz, "I",
"Local offset from GMT in seconds"); "Local offset from GMT in seconds");
#endif /* PORT_TO_JMIPS */
#ifdef PORT_TO_JMIPS
/* art */
SYSCTL_INT(_machdep, CPU_DISRTCSET, disable_rtc_set, CTLFLAG_RW, SYSCTL_INT(_machdep, CPU_DISRTCSET, disable_rtc_set, CTLFLAG_RW,
&disable_rtc_set, 0, "Disable setting the real time clock to system time"); &disable_rtc_set, 0, "Disable setting the real time clock to system time");
#endif /* PORT_TO_JMIPS */
SYSCTL_STRUCT(_machdep, CPU_BOOTINFO, bootinfo, CTLFLAG_RD, &bootinfo,
bootinfo, "Bootinfo struct: kernel filename, BIOS harddisk geometry, etc");
#ifdef PORT_TO_JMIPS
/* dchu */
SYSCTL_INT(_machdep, CPU_WALLCLOCK, wall_cmos_clock, CTLFLAG_RW, SYSCTL_INT(_machdep, CPU_WALLCLOCK, wall_cmos_clock, CTLFLAG_RW,
&wall_cmos_clock, 0, "Wall CMOS clock assumed"); &wall_cmos_clock, 0, "Wall CMOS clock assumed");
#endif /* PORT_TO_JMIPS */ #endif /* PORT_TO_JMIPS */
@ -248,7 +239,6 @@ SYSCTL_INT(_machdep, CPU_WALLCLOCK, wall_cmos_clock, CTLFLAG_RW,
/* /*
* Initialize mips and configure to run kernel * Initialize mips and configure to run kernel
*/ */
void void
mips_proc0_init(void) mips_proc0_init(void)
{ {
@ -273,6 +263,7 @@ mips_proc0_init(void)
thread0.td_pcb = (struct pcb *)(thread0.td_md.md_realstack + thread0.td_pcb = (struct pcb *)(thread0.td_md.md_realstack +
(thread0.td_kstack_pages - 1) * PAGE_SIZE) - 1; (thread0.td_kstack_pages - 1) * PAGE_SIZE) - 1;
thread0.td_frame = &thread0.td_pcb->pcb_regs; thread0.td_frame = &thread0.td_pcb->pcb_regs;
/* /*
* There is no need to initialize md_upte array for thread0 as it's * There is no need to initialize md_upte array for thread0 as it's
* located in .bss section and should be explicitly zeroed during * located in .bss section and should be explicitly zeroed during
@ -370,7 +361,6 @@ set_dbregs(struct thread *td, struct dbreg *dbregs)
return (ENOSYS); return (ENOSYS);
} }
int spinco;
void void
spinlock_enter(void) spinlock_enter(void)
{ {