From dc2a69871d070df9631613957bd34985d016077b Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 28 Jan 2021 11:26:11 +0100 Subject: bsp/leon3: Fix bsp_fatal_extension) indentation Remove superfluous include. Fix comment formatting. This fix relates to a Coverity issue (NESTING_INDENT_MISMATCH). --- bsps/sparc/leon3/start/bspclean.c | 28 +++++++++++++--------------- 1 file changed, 13 insertions(+), 15 deletions(-) (limited to 'bsps/sparc/leon3/start/bspclean.c') diff --git a/bsps/sparc/leon3/start/bspclean.c b/bsps/sparc/leon3/start/bspclean.c index e11ec4b0f3..e2dff91888 100644 --- a/bsps/sparc/leon3/start/bspclean.c +++ b/bsps/sparc/leon3/start/bspclean.c @@ -21,7 +21,6 @@ #include #include -#include #include void bsp_fatal_extension( @@ -30,12 +29,13 @@ void bsp_fatal_extension( rtems_fatal_code code ) { - /* On SMP we must wait for all other CPUs not requesting a fatal halt, they +#if defined(RTEMS_SMP) + /* + * On SMP we must wait for all other CPUs not requesting a fatal halt, they * are responding to another CPU's fatal request. These CPUs goes into * power-down. The CPU requesting fatal halt waits for the others and then * handles the system shutdown via the normal procedure. */ - #ifdef RTEMS_SMP if ((source == RTEMS_FATAL_SOURCE_SMP) && (code == SMP_FATAL_SHUTDOWN_RESPONSE)) { leon3_power_down_loop(); /* CPU didn't start shutdown sequence .. */ @@ -66,18 +66,16 @@ void bsp_fatal_extension( } } } - #endif +#endif - #if (BSP_PRINT_EXCEPTION_CONTEXT) - if ( source == RTEMS_FATAL_SOURCE_EXCEPTION ) { - rtems_exception_frame_print( (const rtems_exception_frame *) code ); - } - #endif +#if BSP_PRINT_EXCEPTION_CONTEXT + if ( source == RTEMS_FATAL_SOURCE_EXCEPTION ) { + rtems_exception_frame_print( (const rtems_exception_frame *) code ); + } +#endif - /* - * If user wants to implement custom reset/reboot it can be done here - */ - #if (BSP_RESET_BOARD_AT_EXIT) - bsp_reset(); - #endif +#if BSP_RESET_BOARD_AT_EXIT + /* If user wants to implement custom reset/reboot it can be done here */ + bsp_reset(); +#endif } -- cgit v1.2.3