Changeset f1380b7 in mainline for kernel/arch/amd64/_link.ld.in


Ignore:
Timestamp:
2018-03-02T20:21:57Z (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:
34e1206
Parents:
a35b458
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:51:04)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:21:57)
Message:

style: Remove trailing whitespace on _all_ lines, including empty ones, remaining files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/amd64/_link.ld.in

    ra35b458 rf1380b7  
    1717                *(K_TEXT_START);
    1818                unmapped_ktext_end = .;
    19                
     19
    2020                unmapped_kdata_start = .;
    2121                *(K_DATA_START);
     
    2323                unmapped_kdata_end = .;
    2424        }
    25        
     25
    2626        .mapped (PA2KA(BOOT_OFFSET)+SIZEOF(.unmapped)) : AT (SIZEOF(.unmapped)) {
    2727                ktext_start = .;
    2828                *(.text .text.*);
    2929                ktext_end = .;
    30                
     30
    3131                kdata_start = .;
    3232                *(.data);              /* initialized data */
     
    4343                QUAD(unmapped_kdata_end - unmapped_kdata_start);
    4444                *(COMMON);      /* global variables */
    45                
     45
    4646                . = ALIGN(8);
    4747                symbol_table = .;
    4848                *(symtab.*);    /* Symbol table, must be LAST symbol!*/
    49                
     49
    5050                *(.bss);        /* uninitialized static variables */
    51                
     51
    5252                kdata_end = .;
    5353        }
    54        
     54
    5555#ifdef CONFIG_LINE_DEBUG
    5656        .comment 0 : { *(.comment); }
     
    6565        .debug_str 0 : { *(.debug_str); }
    6666#endif
    67        
     67
    6868        /DISCARD/ : {
    6969                *(*);
    7070        }
    71        
     71
    7272#ifdef CONFIG_SMP
    7373        _hardcoded_unmapped_size = (unmapped_ktext_end - unmapped_ktext_start) + (unmapped_kdata_end - unmapped_kdata_start);
     
    7676        protected_ap_gdtr = PA2KA(ap_gdtr);
    7777#endif /* CONFIG_SMP */
    78        
     78
    7979}
Note: See TracChangeset for help on using the changeset viewer.