Changeset 1433ecda in mainline for kernel/arch/mips32/src/cpu/cpu.c


Ignore:
Timestamp:
2018-04-04T15:42:37Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2c4e1cc
Parents:
47b2d7e3
Message:

Fix cstyle: make ccheck-fix and commit only files where all the changes are good.

File:
1 edited

Legend:

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

    r47b2d7e3 r1433ecda  
    8686static struct data_t imp_data80[] = {
    8787        { "MIPS", "4Kc" },  /* 0x80 */
    88         {"Invalid","Invalid"}, /* 0x81 */
    89         {"Invalid","Invalid"}, /* 0x82 */
    90         {"MIPS","4Km & 4Kp"}, /* 0x83 */
    91         { NULL, NULL}
     88        { "Invalid", "Invalid" }, /* 0x81 */
     89        { "Invalid", "Invalid" }, /* 0x82 */
     90        { "MIPS", "4Km & 4Kp" }, /* 0x83 */
     91        { NULL, NULL }
    9292};
    9393
     
    129129
    130130        printf("cpu%u: %s %s (rev=%d.%d, imp=%d)\n",
    131                 m->id, data->vendor, data->model, m->arch.rev_num >> 4,
    132                 m->arch.rev_num & 0x0f, m->arch.imp_num);
     131            m->id, data->vendor, data->model, m->arch.rev_num >> 4,
     132            m->arch.rev_num & 0x0f, m->arch.imp_num);
    133133}
    134134
Note: See TracChangeset for help on using the changeset viewer.