Changeset 1433ecda in mainline for kernel/arch/arm32/src/cpu/cpu.c
- Timestamp:
- 2018-04-04T15:42:37Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2c4e1cc
- Parents:
- 47b2d7e3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/src/cpu/cpu.c
r47b2d7e3 r1433ecda 62 62 63 63 /** Implementers (vendor) names */ 64 static const char * 64 static const char *implementer(unsigned id) 65 65 { 66 66 switch (id) { 67 case 0x41: return "ARM Limited"; 68 case 0x44: return "Digital Equipment Corporation"; 69 case 0x4d: return "Motorola, Freescale Semiconductor Inc."; 70 case 0x51: return "Qualcomm Inc."; 71 case 0x56: return "Marvell Semiconductor Inc."; 72 case 0x69: return "Intel Corporation"; 67 case 0x41: 68 return "ARM Limited"; 69 case 0x44: 70 return "Digital Equipment Corporation"; 71 case 0x4d: 72 return "Motorola, Freescale Semiconductor Inc."; 73 case 0x51: 74 return "Qualcomm Inc."; 75 case 0x56: 76 return "Marvell Semiconductor Inc."; 77 case 0x69: 78 return "Intel Corporation"; 73 79 } 74 80 return "Unknown implementer"; … … 76 82 77 83 /** Architecture names */ 78 static const char * 84 static const char *architecture_string(cpu_arch_t *arch) 79 85 { 80 86 static const char *arch_data[] = {
Note:
See TracChangeset
for help on using the changeset viewer.