Changeset 1b20da0 in mainline for kernel/arch/arm32/src


Ignore:
Timestamp:
2018-02-28T17:52:03Z (8 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

Location:
kernel/arch/arm32/src
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/arm32/src/atomic.c

    rdf6ded8 r1b20da0  
    4646void * __sync_val_compare_and_swap_4(void **ptr, void *expected, void *new_val)
    4747{
    48         /* 
     48        /*
    4949         * Using an interrupt disabling spinlock might still lead to deadlock
    5050         * if CAS() is used in an exception handler. Eg. if a CAS() results
  • kernel/arch/arm32/src/context.S

    rdf6ded8 r1b20da0  
    2929#include <abi/asmtool.h>
    3030
    31 .text   
     31.text
    3232
    3333FUNCTION_BEGIN(context_save_arch)
  • kernel/arch/arm32/src/exc_handler.S

    rdf6ded8 r1b20da0  
    2929#include <abi/asmtool.h>
    3030
    31 .text   
     31.text
    3232
    3333# Switches to kernel stack and saves all registers there.
  • kernel/arch/arm32/src/interrupt.c

    rdf6ded8 r1b20da0  
    7373{
    7474        current_status_reg_control_write(
    75             (current_status_reg_read() & ~STATUS_REG_IRQ_DISABLED_BIT) | 
     75            (current_status_reg_read() & ~STATUS_REG_IRQ_DISABLED_BIT) |
    7676            (ipl & STATUS_REG_IRQ_DISABLED_BIT));
    7777}
  • kernel/arch/arm32/src/mach/integratorcp/integratorcp.c

    rdf6ded8 r1b20da0  
    113113
    114114/** Masks interrupt.
    115  * 
     115 *
    116116 * @param irq interrupt number
    117117 */
     
    123123
    124124/** Unmasks interrupt.
    125  * 
     125 *
    126126 * @param irq interrupt number
    127127 */
  • kernel/arch/arm32/src/mm/as.c

    rdf6ded8 r1b20da0  
    4343
    4444/** Architecture dependent address space init.
    45  * 
     45 *
    4646 *  Since ARM supports page tables, #as_pt_operations are used.
    4747 */
  • kernel/arch/arm32/src/mm/tlb.c

    rdf6ded8 r1b20da0  
    2727 */
    2828
    29 /** @addtogroup arm32mm 
     29/** @addtogroup arm32mm
    3030 * @{
    3131 */
  • kernel/arch/arm32/src/ras.c

    rdf6ded8 r1b20da0  
    5959            PAGE_SIZE, PAGE_READ | PAGE_WRITE | PAGE_USER | PAGE_CACHEABLE);
    6060       
    61         memsetb(ras_page, PAGE_SIZE, 0); 
     61        memsetb(ras_page, PAGE_SIZE, 0);
    6262        ras_page[RAS_START] = 0;
    6363        ras_page[RAS_END] = 0xffffffff;
Note: See TracChangeset for help on using the changeset viewer.