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/sparc64/src/cpu/sun4u/cpu.c

    r47b2d7e3 r1433ecda  
    9999                        int f;
    100100                        f = find_cpu_frequency(
    101                                 ofw_tree_find_child(node, "cpu@0"));
     101                            ofw_tree_find_child(node, "cpu@0"));
    102102                        if (f != -1)
    103103                                clock_frequency = (uint32_t) f;
    104104                        f = find_cpu_frequency(
    105                                 ofw_tree_find_child(node, "cpu@1"));
     105                            ofw_tree_find_child(node, "cpu@1"));
    106106                        if (f != -1)
    107107                                clock_frequency = (uint32_t) f;
     
    140140                break;
    141141        case MANUF_SUN:
    142                 manuf = "Sun";
     142                manuf = "Sun";
    143143                break;
    144144        default:
     
    184184
    185185        printf("cpu%d: manuf=%s, impl=%s, mask=%d (%d MHz)\n", m->id, manuf,
    186                 impl, m->arch.ver.mask, m->arch.clock_frequency / 1000000);
     186            impl, m->arch.ver.mask, m->arch.clock_frequency / 1000000);
    187187}
    188188
Note: See TracChangeset for help on using the changeset viewer.