aboutsummaryrefslogtreecommitdiff
path: root/tip22/tftpload.c
diff options
context:
space:
mode:
Diffstat (limited to 'tip22/tftpload.c')
-rw-r--r--tip22/tftpload.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tip22/tftpload.c b/tip22/tftpload.c
index c438401..2d649a0 100644
--- a/tip22/tftpload.c
+++ b/tip22/tftpload.c
@@ -266,7 +266,7 @@ void _start(LONG argc, CHAR * argv[], CHAR * envp[])
#endif
/* Finally jump into the kernel */
printf("Starting kernel...\n\r");
- ArcFlushAllCaches();
+ prom_flush_cache_all();
if( kernel_entry )
(*kernel_entry)(nargc ,nargv, envp);
else
@@ -275,5 +275,5 @@ void _start(LONG argc, CHAR * argv[], CHAR * envp[])
/* Not likely to get back here in a functional state,
* but what the heck */
prom_wait("\n\r--- Press <spacebar> to restart ---");
- ArcRestart();
+ prom_restart();
}