Changeset 6c441cf8 in mainline for kernel/arch/arm32
- Timestamp:
- 2008-02-27T11:49:17Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 56976a17
- Parents:
- fdb7795
- Location:
- kernel/arch/arm32/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/src/arm32.c
rfdb7795 r6c441cf8 56 56 void arch_pre_main(void) 57 57 { 58 int i;58 unsigned int i; 59 59 60 60 init.cnt = bootinfo.cnt; -
kernel/arch/arm32/src/cpu/cpu.c
rfdb7795 r6c441cf8 57 57 58 58 /** Length of the #imp_data array */ 59 static int imp_data_length = sizeof(imp_data) / sizeof(char *);59 static unsigned int imp_data_length = sizeof(imp_data) / sizeof(char *); 60 60 61 61 /** Architecture names */ … … 72 72 73 73 /** Length of the #arch_data array */ 74 static int arch_data_length = sizeof(arch_data) / sizeof(char *);74 static unsigned int arch_data_length = sizeof(arch_data) / sizeof(char *); 75 75 76 76 -
kernel/arch/arm32/src/debug/print.c
rfdb7795 r6c441cf8 57 57 static int debug_write(const char *str, size_t count, void *unused) 58 58 { 59 int i;60 for (i = 0; i < count; ++i) {59 unsigned int i; 60 for (i = 0; i < count; ++i) 61 61 putc(str[i]); 62 }62 63 63 return i; 64 64 }
Note:
See TracChangeset
for help on using the changeset viewer.
