Ignore:
Timestamp:
2018-02-28T17:52:03Z (7 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3061bc1
Parents:
df6ded8
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:26:03)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:52:03)
Message:

style: Remove trailing whitespace on non-empty lines, in certain file types.

Command used: tools/srepl '\([^[:space:]]\)\s\+$' '\1' -- *.c *.h *.py *.sh *.s *.S *.ag

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/cpu/cpu_mask.h

    rdf6ded8 r1b20da0  
    3939#include <lib/memfnc.h>
    4040
    41 /** Iterates over all cpu id's whose bit is included in the cpu mask. 
    42  * 
     41/** Iterates over all cpu id's whose bit is included in the cpu mask.
     42 *
    4343 * Example usage:
    4444 * @code
    4545 * DEFINE_CPU_MASK(cpu_mask);
    4646 * cpu_mask_active(&cpu_mask);
    47  * 
     47 *
    4848 * cpu_mask_for_each(cpu_mask, cpu_id) {
    4949 *     printf("Cpu with logical id %u is active.\n", cpu_id);
     
    5353#define cpu_mask_for_each(mask, cpu_id) \
    5454        for (unsigned int (cpu_id) = 0; (cpu_id) < config.cpu_count; ++(cpu_id)) \
    55                 if (cpu_mask_is_set(&(mask), (cpu_id))) 
     55                if (cpu_mask_is_set(&(mask), (cpu_id)))
    5656
    5757/** Allocates a cpu_mask_t on stack. */
     
    7474extern bool cpu_mask_is_none(cpu_mask_t *);
    7575
    76 #endif /* KERN_CPU_CPU_MASK_H_ */ 
     76#endif /* KERN_CPU_CPU_MASK_H_ */
    7777
    7878/** @}
Note: See TracChangeset for help on using the changeset viewer.