summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/beatnik/startup/bspclean.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/powerpc/beatnik/startup/bspclean.c')
-rw-r--r--c/src/lib/libbsp/powerpc/beatnik/startup/bspclean.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/c/src/lib/libbsp/powerpc/beatnik/startup/bspclean.c b/c/src/lib/libbsp/powerpc/beatnik/startup/bspclean.c
index 746a48fbde..036cbb4c84 100644
--- a/c/src/lib/libbsp/powerpc/beatnik/startup/bspclean.c
+++ b/c/src/lib/libbsp/powerpc/beatnik/startup/bspclean.c
@@ -1,11 +1,16 @@
#include <bsp.h>
#include <rtems/bspIo.h>
-void bsp_cleanup(void)
+void bsp_cleanup(
+ uint32_t status
+)
{
/* We can't go back to MotLoad since we blew it's memory area
* and vectors. Just pull the reset line...
*/
- printk("bsp_cleanup(): RTEMS terminated -- no way back to MotLoad so I reset the card\n");
+ printk(
+ "bsp_cleanup(): RTEMS terminated -- no way back to MotLoad "
+ "so I reset the card\n"
+ );
bsp_reset();
}