Module Name: src
Committed By: cliff
Date: Thu Apr 14 05:50:44 UTC 2011
Modified Files:
src/sys/arch/mips/mips: locore_mips1.S
Log Message:
- add loocoresw slot for lsw_cpu_run
- fix comments for locoresw entries
To generate a diff of this commit:
cvs rdiff -u -r1.77 -r1.78 src/sys/arch/mips/mips/locore_mips1.S
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/mips/mips/locore_mips1.S
diff -u src/sys/arch/mips/mips/locore_mips1.S:1.77 src/sys/arch/mips/mips/locore_mips1.S:1.78
--- src/sys/arch/mips/mips/locore_mips1.S:1.77 Wed Apr 6 14:12:36 2011
+++ src/sys/arch/mips/mips/locore_mips1.S Thu Apr 14 05:50:43 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: locore_mips1.S,v 1.77 2011/04/06 14:12:36 tsutsui Exp $ */
+/* $NetBSD: locore_mips1.S,v 1.78 2011/04/14 05:50:43 cliff Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -1697,12 +1697,13 @@
.globl _C_LABEL(MIPSX(locoresw))
_C_LABEL(MIPSX(locoresw)):
- PTR_WORD _C_LABEL(MIPSX(wbflush)) # wbflush
- PTR_WORD _C_LABEL(nullop) # idle
- PTR_WORD _C_LABEL(nullop) # send ipi
- PTR_WORD _C_LABEL(nullop) # cpu_offline_md
- PTR_WORD _C_LABEL(nullop) # spare
- PTR_WORD _C_LABEL(nullop) # spare
+ PTR_WORD _C_LABEL(MIPSX(wbflush)) # lsw_wbflush
+ PTR_WORD _C_LABEL(nullop) # lsw_cpu_idle
+ PTR_WORD _C_LABEL(nullop) # lsw_send_ipi
+ PTR_WORD _C_LABEL(nullop) # lsw_cpu_offline_md
+ PTR_WORD _C_LABEL(nullop) # lsw_cpu_init
+ PTR_WORD _C_LABEL(nullop) # lsw_cpu_run
+ PTR_WORD _C_LABEL(nullop) # lsw_bus_error
MIPSX(excpt_sw):
####