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/arch/mips32/src/debug/stacktrace.c

    rdf6ded8 r1b20da0  
    3636 * This stack tracing code is based on the suggested algorithm described on page
    3737 * 3-27 and 3-28 of:
    38  * 
     38 *
    3939 * SYSTEM V
    4040 * APPLICATION BINARY INTERFACE
     
    8888#define BASE_MASK       RS_MASK
    8989#define IMM_MASK        (0xffff << IMM_SHIFT)
    90 #define OFFSET_MASK     IMM_MASK       
     90#define OFFSET_MASK     IMM_MASK
    9191
    9292#define RS_GET(inst)            (((inst) & RS_MASK) >> RS_SHIFT)
     
    9494#define IMM_GET(inst)           (int16_t)(((inst) & IMM_MASK) >> IMM_SHIFT)
    9595#define BASE_GET(inst)          RS_GET(inst)
    96 #define OFFSET_GET(inst)        IMM_GET(inst)   
     96#define OFFSET_GET(inst)        IMM_GET(inst)
    9797
    9898#define ADDU_R_SP_R0_TEMPL \
Note: See TracChangeset for help on using the changeset viewer.