- Timestamp:
- 2015-06-01T00:04:05Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 53031c2
- Parents:
- 91deaff
- Location:
- kernel
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/abs32le/src/abs32le.c
r91deaff r193d280c 69 69 } 70 70 71 void arch_post_cpu_init( )71 void arch_post_cpu_init(void) 72 72 { 73 73 } -
kernel/arch/amd64/include/arch/asm.h
r91deaff r193d280c 339 339 * 340 340 */ 341 NO_TRACE static inline void enable_l_apic_in_msr( )341 NO_TRACE static inline void enable_l_apic_in_msr(void) 342 342 { 343 343 asm volatile ( -
kernel/arch/amd64/src/fpu_context.c
r91deaff r193d280c 54 54 } 55 55 56 void fpu_init( )56 void fpu_init(void) 57 57 { 58 58 /* TODO: Zero all SSE, MMX etc. registers */ -
kernel/arch/arm32/include/arch/cp15.h
r91deaff r193d280c 47 47 48 48 #define CONTROL_REG_GEN_READ(name, crn, opc1, crm, opc2) \ 49 static inline uint32_t name##_read( ) \49 static inline uint32_t name##_read(void) \ 50 50 { \ 51 51 uint32_t val; \ -
kernel/arch/arm32/include/arch/security_ext.h
r91deaff r193d280c 46 46 * older archs. 47 47 */ 48 static inline bool sec_ext_is_implemented( )48 static inline bool sec_ext_is_implemented(void) 49 49 { 50 50 #ifdef PROCESSOR_ARCH_armv7_a … … 60 60 * mode. 61 61 */ 62 static inline bool sec_ext_is_monitor_mode( )62 static inline bool sec_ext_is_monitor_mode(void) 63 63 { 64 64 return (current_status_reg_read() & MODE_MASK) == MONITOR_MODE; … … 75 75 * Look for 'secureworld_exit' in arch/arm/cpu/armv7/omap3/board.c. 76 76 */ 77 static inline bool sec_ext_is_secure( )77 static inline bool sec_ext_is_secure(void) 78 78 { 79 79 return sec_ext_is_implemented() -
kernel/arch/arm32/src/arm32.c
r91deaff r193d280c 158 158 159 159 /** Reboot. */ 160 void arch_reboot( )160 void arch_reboot(void) 161 161 { 162 162 /* not implemented */ -
kernel/arch/arm32/src/fpu_context.c
r91deaff r193d280c 101 101 FPSCR_EN_ALL = FPSCR_DENORMAL_EN_FLAG | FPSCR_INEXACT_EN_FLAG | FPSCR_UNDERFLOW_EN_FLAG | FPSCR_OVERFLOW_EN_FLAG | FPSCR_ZERO_DIV_EN_FLAG | FPSCR_INVALID_OP_EN_FLAG, 102 102 }; 103 103 104 extern uint32_t fpscr_read(void); 104 105 extern void fpscr_write(uint32_t); … … 114 115 static void (*restore_context)(fpu_context_t *ctx); 115 116 116 static int fpu_have_coprocessor_access() 117 { 118 /* The register containing the information (CPACR) is not available on armv6- 117 static int fpu_have_coprocessor_access(void) 118 { 119 /* 120 * The register containing the information (CPACR) is not available on armv6- 119 121 * rely on user decision to use CONFIG_FPU. 120 122 */ … … 143 145 * @note do we need to call secure monitor here? 144 146 */ 145 static void fpu_enable_coprocessor_access() 146 { 147 /* The register containing the information (CPACR) is not available on armv6- 147 static void fpu_enable_coprocessor_access(void) 148 { 149 /* 150 * The register containing the information (CPACR) is not available on armv6- 148 151 * rely on user decision to use CONFIG_FPU. 149 152 */ -
kernel/arch/ia32/src/fpu_context.c
r91deaff r193d280c 125 125 126 126 /** Initialize x87 FPU. Mask all exceptions. */ 127 void fpu_init( )127 void fpu_init(void) 128 128 { 129 129 uint32_t help0 = 0; -
kernel/arch/ia64/src/mm/vhpt.c
r91deaff r193d280c 82 82 } 83 83 84 void vhpt_invalidate_all( )84 void vhpt_invalidate_all(void) 85 85 { 86 86 memsetb(vhpt_base, VHPT_SIZE, 0); -
kernel/arch/mips32/src/debugger.c
r91deaff r193d280c 288 288 * 289 289 */ 290 void debugger_init( )290 void debugger_init(void) 291 291 { 292 292 unsigned int i; -
kernel/arch/mips32/src/fpu_context.c
r91deaff r193d280c 53 53 } 54 54 55 void fpu_init( )55 void fpu_init(void) 56 56 { 57 57 /* TODO: Zero all registers */ -
kernel/arch/sparc32/src/sparc32.c
r91deaff r193d280c 96 96 97 97 98 void arch_post_cpu_init( )98 void arch_post_cpu_init(void) 99 99 { 100 100 } -
kernel/generic/include/typedefs.h
r91deaff r193d280c 50 50 } atomic_t; 51 51 52 typedef void (* function)( );52 typedef void (* function)(void); 53 53 54 54 typedef uint32_t container_id_t; -
kernel/generic/src/lib/func.c
r91deaff r193d280c 51 51 * 52 52 */ 53 void halt( )53 void halt(void) 54 54 { 55 55 #if (defined(CONFIG_DEBUG)) && (defined(CONFIG_KCONSOLE))
Note:
See TracChangeset
for help on using the changeset viewer.