2011-12-10 Ralf Corsépius <ralf.corsepius@rtems.org>

* shared/interrupts/vectorexceptions.c: Make
	mips_dump_exception_frame, mips_default_exception_code_handler
	static.
This commit is contained in:
Ralf Corsepius
2011-12-10 04:07:46 +00:00
parent de5868fe37
commit ac4f31c814
2 changed files with 8 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
2011-12-10 Ralf Corsépius <ralf.corsepius@rtems.org>
* shared/interrupts/vectorexceptions.c: Make
mips_dump_exception_frame, mips_default_exception_code_handler
static.
2011-10-18 Jennifer Averett <Jennifer.Averett@OARcorp.com>
PR 1917/bsps

View File

@@ -67,7 +67,7 @@ static const struct regdef dumpregs[]= {
{ R_EPC,"R_EPC"}, { -1, NULL }
};
void mips_dump_exception_frame( CPU_Interrupt_frame *frame )
static void mips_dump_exception_frame( CPU_Interrupt_frame *frame )
{
uint32_t *frame_u32;
int i, j;
@@ -87,7 +87,7 @@ void mips_dump_exception_frame( CPU_Interrupt_frame *frame )
printk( "\n" );
}
void mips_default_exception_code_handler( int exc, CPU_Interrupt_frame *frame )
static void mips_default_exception_code_handler( int exc, CPU_Interrupt_frame *frame )
{
uint32_t sr;
uint32_t cause;