Changeset a35b458 in mainline for kernel/generic/src/lib/mem.c


Ignore:
Timestamp:
2018-03-02T20:10:49Z (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:
f1380b7
Parents:
3061bc1
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:38:31)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:10:49)
Message:

style: Remove trailing whitespace on _all_ lines, including empty ones, for particular file types.

Command used: tools/srepl '\s\+$' '' -- *.c *.h *.py *.sh *.s *.S *.ag

Currently, whitespace on empty lines is very inconsistent.
There are two basic choices: Either remove the whitespace, or keep empty lines
indented to the level of surrounding code. The former is AFAICT more common,
and also much easier to do automatically.

Alternatively, we could write script for automatic indentation, and use that
instead. However, if such a script exists, it's possible to use the indented
style locally, by having the editor apply relevant conversions on load/save,
without affecting remote repository. IMO, it makes more sense to adopt
the simpler rule.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/lib/mem.c

    r3061bc1 ra35b458  
    7272        size_t i;
    7373        uint16_t *ptr = (uint16_t *) dst;
    74        
     74
    7575        for (i = 0; i < cnt; i++)
    7676                ptr[i] = val;
     
    9494        if (src == dst)
    9595                return dst;
    96        
     96
    9797        /* Non-overlapping? */
    9898        if ((dst >= src + cnt) || (src >= dst + cnt))
    9999                return memcpy(dst, src, cnt);
    100        
     100
    101101        uint8_t *dp;
    102102        const uint8_t *sp;
    103        
     103
    104104        /* Which direction? */
    105105        if (src > dst) {
     
    107107                dp = dst;
    108108                sp = src;
    109                
     109
    110110                while (cnt-- != 0)
    111111                        *dp++ = *sp++;
     
    114114                dp = dst + (cnt - 1);
    115115                sp = src + (cnt - 1);
    116                
     116
    117117                while (cnt-- != 0)
    118118                        *dp-- = *sp--;
    119119        }
    120        
     120
    121121        return dst;
    122122}
Note: See TracChangeset for help on using the changeset viewer.