Changeset 76fca31 in mainline for kernel/arch/mips32/src/cpu/cpu.c


Ignore:
Timestamp:
2008-12-16T19:02:07Z (16 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5ae4443
Parents:
8fe5980
Message:

kconsole is optional
kernel & uspace framebuffer rewrite with speedups (some things are slightly broken yet)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/mips32/src/cpu/cpu.c

    r8fe5980 r76fca31  
    4949        { "MIPS", "R3000" },            /* 0x02 */
    5050        { "MIPS", "R6000" },            /* 0x03 */
    51         { "MIPS", " R4000/R4400" },     /* 0x04 */
     51        { "MIPS", "R4000/R4400" },      /* 0x04 */
    5252        { "LSI Logic", "R3000" },       /* 0x05 */
    5353        { "MIPS", "R6000A" },           /* 0x06 */
     
    124124        }
    125125
    126         printf("cpu%d: %s %s (rev=%d.%d, imp=%d)\n",
     126        printf("cpu%u: %s %s (rev=%d.%d, imp=%d)\n",
    127127                m->id, data->vendor, data->model, m->arch.rev_num >> 4,
    128                 m->arch.rev_num & 0xf, m->arch.imp_num);
     128                m->arch.rev_num & 0x0f, m->arch.imp_num);
    129129}
    130130
Note: See TracChangeset for help on using the changeset viewer.