Changeset 76fca31 in mainline for kernel/arch/mips32/src/cpu/cpu.c
- Timestamp:
- 2008-12-16T19:02:07Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5ae4443
- Parents:
- 8fe5980
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/src/cpu/cpu.c
r8fe5980 r76fca31 49 49 { "MIPS", "R3000" }, /* 0x02 */ 50 50 { "MIPS", "R6000" }, /* 0x03 */ 51 { "MIPS", " 51 { "MIPS", "R4000/R4400" }, /* 0x04 */ 52 52 { "LSI Logic", "R3000" }, /* 0x05 */ 53 53 { "MIPS", "R6000A" }, /* 0x06 */ … … 124 124 } 125 125 126 printf("cpu% d: %s %s (rev=%d.%d, imp=%d)\n",126 printf("cpu%u: %s %s (rev=%d.%d, imp=%d)\n", 127 127 m->id, data->vendor, data->model, m->arch.rev_num >> 4, 128 m->arch.rev_num & 0x f, m->arch.imp_num);128 m->arch.rev_num & 0x0f, m->arch.imp_num); 129 129 } 130 130
Note:
See TracChangeset
for help on using the changeset viewer.