Remove unnecessary mods from the MIPS pull request (kernel and tests folder changes are not required, only the MIPS port folder is necessary).

This commit is contained in:
Kelvin Lawson
2011-07-28 22:22:52 +01:00
parent 743ce54031
commit 8de14626d0
34 changed files with 34 additions and 17 deletions

View File

@@ -343,7 +343,7 @@ static void atomThreadSwitch(ATOM_TCB *old_tcb, ATOM_TCB *new_tcb)
curr_tcb = new_tcb;
/* Call the architecture-specific context switch */
old_tcb = archContextSwitch (old_tcb, new_tcb);
archContextSwitch (old_tcb, new_tcb);
}
/**