1- /* UNCRUSTIFY-OFF */
1+ /* UNCRUSTIFY-OFF */
22#ifndef BSP_LINKER_H
3- #define BSP_LINKER_H
3+ #define BSP_LINKER_H
44
55/***********************************************************************************************************************
66 * Macro definitions
@@ -32,33 +32,33 @@ typedef enum e_bsp_init_mem
3232
3333typedef struct st_bsp_init_type
3434{
35- uint32_t copy_64 : 8 ; /* if 1, must use 64 bit copy operation (to keep ecc happy) */
36- uint32_t external : 8 ; /* =1 if either source or destination is external, else 0 */
37- uint32_t source_type : 8 ;
38- uint32_t destination_type : 8 ;
35+ uint32_t copy_64 : 8 ; /* if 1, must use 64 bit copy operation (to keep ecc happy) */
36+ uint32_t external : 8 ; /* =1 if either source or destination is external, else 0 */
37+ uint32_t source_type : 8 ;
38+ uint32_t destination_type : 8 ;
3939} bsp_init_type_t ;
4040
4141typedef struct st_bsp_init_zero_info
4242{
43- uint32_t * const p_base ;
44- uint32_t * const p_limit ;
45- bsp_init_type_t type ;
43+ uint32_t * const p_base ;
44+ uint32_t * const p_limit ;
45+ bsp_init_type_t type ;
4646} bsp_init_zero_info_t ;
4747
4848typedef struct st_bsp_init_copy_info
4949{
50- uint32_t * const p_base ;
51- uint32_t * const p_limit ;
52- uint32_t * const p_load ;
53- bsp_init_type_t type ;
50+ uint32_t * const p_base ;
51+ uint32_t * const p_limit ;
52+ uint32_t * const p_load ;
53+ bsp_init_type_t type ;
5454} bsp_init_copy_info_t ;
5555
5656typedef struct st_bsp_init_info
5757{
5858 uint32_t zero_count ;
59- bsp_init_zero_info_t const * const p_zero_list ;
59+ bsp_init_zero_info_t const * const p_zero_list ;
6060 uint32_t copy_count ;
61- bsp_init_copy_info_t const * const p_copy_list ;
61+ bsp_init_copy_info_t const * const p_copy_list ;
6262} bsp_init_info_t ;
6363
6464/***********************************************************************************************************************
@@ -70,7 +70,7 @@ extern bsp_init_info_t const g_init_info;
7070/***********************************************************************************************************************
7171 * Exported global functions (to be accessed by other files)
7272 **********************************************************************************************************************/
73- #endif /* BSP_LINKER_H*/
73+ #endif // BSP_LINKER_H
7474#ifdef BSP_LINKER_C
7575/***********************************************************************************************************************
7676 * Objects allocated by bsp_linker.c
@@ -105,6 +105,6 @@ const bsp_init_info_t g_init_info =
105105 .p_copy_list = copy_list
106106};
107107
108- #endif /* BSP_LINKER_C*/
108+ #endif // BSP_LINKER_C
109109
110110/* UNCRUSTIFY-ON */
0 commit comments