Rev 2465 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2465 | Rev 2745 | ||
|---|---|---|---|
| Line 54... | Line 54... | ||
| 54 | "", "", "", "", "", "", /* 0x63 - 0x68 */ |
54 | "", "", "", "", "", "", /* 0x63 - 0x68 */ |
| 55 | "Intel Corporation" /* 0x69 */ |
55 | "Intel Corporation" /* 0x69 */ |
| 56 | }; |
56 | }; |
| 57 | 57 | ||
| 58 | /** Length of the #imp_data array */ |
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 | /** Architecture names */ |
61 | /** Architecture names */ |
| 62 | static char *arch_data[] = { |
62 | static char *arch_data[] = { |
| 63 | "?", /* 0x0 */ |
63 | "?", /* 0x0 */ |
| 64 | "4", /* 0x1 */ |
64 | "4", /* 0x1 */ |
| Line 69... | Line 69... | ||
| 69 | "5TEJ", /* 0x6 */ |
69 | "5TEJ", /* 0x6 */ |
| 70 | "6" /* 0x7 */ |
70 | "6" /* 0x7 */ |
| 71 | }; |
71 | }; |
| 72 | 72 | ||
| 73 | /** Length of the #arch_data array */ |
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 | ||
| 77 | /** Retrieves processor identification from CP15 register 0. |
77 | /** Retrieves processor identification from CP15 register 0. |
| 78 | * |
78 | * |
| 79 | * @param cpu Structure for storing CPU identification. |
79 | * @param cpu Structure for storing CPU identification. |