Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/mips/mips No need for mips_locore_jumpvec to be ini...



details:   https://anonhg.NetBSD.org/src/rev/eb03ab326431
branches:  trunk
changeset: 481536:eb03ab326431
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Tue Feb 01 18:38:50 2000 +0000

description:
No need for mips_locore_jumpvec to be initialized data.

diffstat:

 sys/arch/mips/mips/mips_machdep.c |  11 +++--------
 1 files changed, 3 insertions(+), 8 deletions(-)

diffs (32 lines):

diff -r e457e2014c6c -r eb03ab326431 sys/arch/mips/mips/mips_machdep.c
--- a/sys/arch/mips/mips/mips_machdep.c Tue Feb 01 18:33:22 2000 +0000
+++ b/sys/arch/mips/mips/mips_machdep.c Tue Feb 01 18:38:50 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mips_machdep.c,v 1.64 2000/01/28 15:08:37 takemura Exp $       */
+/*     $NetBSD: mips_machdep.c,v 1.65 2000/02/01 18:38:50 thorpej Exp $        */
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -52,7 +52,7 @@
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: mips_machdep.c,v 1.64 2000/01/28 15:08:37 takemura Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mips_machdep.c,v 1.65 2000/02/01 18:38:50 thorpej Exp $");
 
 #include "opt_compat_netbsd.h"
 #include "opt_compat_ultrix.h"
@@ -99,12 +99,7 @@
 static void    mips3_vector_init __P((void));
 #endif
 
-
-mips_locore_jumpvec_t mips_locore_jumpvec = {
-  NULL, NULL, NULL, NULL,
-  NULL, NULL, NULL, NULL,
-  NULL, NULL
-};
+mips_locore_jumpvec_t mips_locore_jumpvec;
 
 int cpu_mhz;
 int mips_num_tlb_entries;



Home | Main Index | Thread Index | Old Index