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/sparc64/src/sun4u/start.S

    rdf6ded8 r1b20da0  
    8888        ! l5 <= physmem_base[(PHYSMEM_ADDR_SIZE - 1):13]
    8989        sllx %l5, 13 + (63 - (PHYSMEM_ADDR_SIZE - 1)), %l5
    90         srlx %l5, 63 - (PHYSMEM_ADDR_SIZE - 1), %l5     
     90        srlx %l5, 63 - (PHYSMEM_ADDR_SIZE - 1), %l5
    9191
    9292        /*
     
    118118        wrpr %g1, %lo(trap_table), %tba
    119119
    120         /* 
     120        /*
    121121         * Take over the DMMU by installing locked TTE entry identically
    122122         * mapping the first 4M of memory.
     
    135135        ! demap context 0
    136136        SET_TLB_DEMAP_CMD(g1, TLB_DEMAP_NUCLEUS)
    137         stxa %g0, [%g1] ASI_DMMU_DEMAP                 
     137        stxa %g0, [%g1] ASI_DMMU_DEMAP
    138138        membar #Sync
    139139
     
    143143        ! write DTLB tag
    144144        SET_TLB_TAG(g1, MEM_CONTEXT_KERNEL)
    145         stxa %g1, [VA_DMMU_TAG_ACCESS] %asi                     
     145        stxa %g1, [VA_DMMU_TAG_ACCESS] %asi
    146146        membar #Sync
    147147
     
    164164        ! write DTLB data and install the kernel mapping
    165165        SET_TLB_DATA(g1, g2, TTE_L | TTE_W)     ! use non-global mapping
    166         stxa %g1, [%g0] ASI_DTLB_DATA_IN_REG           
     166        stxa %g1, [%g0] ASI_DTLB_DATA_IN_REG
    167167        membar #Sync
    168168
     
    175175        ! write DTLB tag of context 1 (i.e. MEM_CONTEXT_TEMP)
    176176        SET_TLB_TAG(g1, MEM_CONTEXT_TEMP)
    177         stxa %g1, [VA_DMMU_TAG_ACCESS] %asi                     
     177        stxa %g1, [VA_DMMU_TAG_ACCESS] %asi
    178178        membar #Sync
    179179
    180180        ! write DTLB data and install the kernel mapping in context 1
    181181        SET_TLB_DATA(g1, g2, TTE_W)                     ! use non-global mapping
    182         stxa %g1, [%g0] ASI_DTLB_DATA_IN_REG           
     182        stxa %g1, [%g0] ASI_DTLB_DATA_IN_REG
    183183        membar #Sync
    184184       
     
    213213        ! write ITLB data and install the temporary mapping in context 1
    214214        SET_TLB_DATA(g1, g2, 0)                 ! use non-global mapping
    215         stxa %g1, [%g0] ASI_ITLB_DATA_IN_REG           
     215        stxa %g1, [%g0] ASI_ITLB_DATA_IN_REG
    216216        flush %g5
    217217       
     
    223223        ! demap context 0
    224224        SET_TLB_DEMAP_CMD(g1, TLB_DEMAP_NUCLEUS)
    225         stxa %g0, [%g1] ASI_IMMU_DEMAP                 
     225        stxa %g0, [%g1] ASI_IMMU_DEMAP
    226226        flush %g5
    227227       
     
    234234        ! write ITLB data and install the permanent kernel mapping in context 0
    235235        SET_TLB_DATA(g1, g2, TTE_L)             ! use non-global mapping
    236         stxa %g1, [%g0] ASI_ITLB_DATA_IN_REG           
     236        stxa %g1, [%g0] ASI_ITLB_DATA_IN_REG
    237237        flush %g5
    238238
     
    242242        ! demap context 1
    243243        SET_TLB_DEMAP_CMD(g1, TLB_DEMAP_PRIMARY)
    244         stxa %g0, [%g1] ASI_IMMU_DEMAP                 
     244        stxa %g0, [%g1] ASI_IMMU_DEMAP
    245245        flush %g5
    246246       
     
    406406 */
    407407
    408 .align 32 
     408.align 32
    409409/*
    410410 * This label is used by the fast_data_access_MMU_miss trap handler.
     
    417417 */
    418418SYMBOL(end_of_identity)
    419         .quad -1 
     419        .quad -1
    420420/*
    421421 * This variable is used by the fast_data_access_MMU_miss trap handler.
Note: See TracChangeset for help on using the changeset viewer.