Changeset 1433ecda in mainline for kernel/arch/arm32/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/arm32/src/cpu/cpu.c

    r47b2d7e3 r1433ecda  
    6262
    6363/** Implementers (vendor) names */
    64 static const char * implementer(unsigned id)
     64static const char *implementer(unsigned id)
    6565{
    6666        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";
    7379        }
    7480        return "Unknown implementer";
     
    7682
    7783/** Architecture names */
    78 static const char * architecture_string(cpu_arch_t *arch)
     84static const char *architecture_string(cpu_arch_t *arch)
    7985{
    8086        static const char *arch_data[] = {
Note: See TracChangeset for help on using the changeset viewer.