Implement platform_reset. Also, make the code a tiny bit easier to

read with ninja-C magic coupled with an illuminating comment.
This commit is contained in:
Warner Losh 2009-08-17 12:23:58 +00:00
parent a54c4d8590
commit 2004aa74c3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/projects/mips/; revision=196314

View File

@ -85,10 +85,10 @@ extern int *end;
* Perform a board-level soft-reset.
* Note that this is not emulated by gxemul.
*/
void octeon_reset (void)
void
platform_reset(void)
{
void (*reset_func)(void) = (void (*)(void) )0x1fc00000;
reset_func();
((void(*)(void))0x1fc00000)(); /* Jump to this hex address */
}