Changeset 8565a42 in mainline for kernel/arch/ia32/_link.ld.in


Ignore:
Timestamp:
2018-03-02T20:34:50Z (8 years ago)
Author:
GitHub <noreply@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a1a81f69, d5e5fd1
Parents:
3061bc1 (diff), 34e1206 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:34:50)
git-committer:
GitHub <noreply@…> (2018-03-02 20:34:50)
Message:

Remove all trailing whitespace, everywhere.

See individual commit messages for details.

File:
1 edited

Legend:

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

    r3061bc1 r8565a42  
    1717                *(K_TEXT_START);
    1818                unmapped_ktext_end = .;
    19        
     19
    2020                unmapped_kdata_start = .;
    2121                *(K_DATA_START);
    2222                unmapped_kdata_end = .;
    2323        }
    24        
     24
    2525        .mapped (PA2KA(BOOT_OFFSET)+SIZEOF(.unmapped)): AT (SIZEOF(.unmapped)) {
    2626                ktext_start = .;
    2727                *(.text .text.*);
    2828                ktext_end = .;
    29                
     29
    3030                kdata_start = .;
    3131                *(.data);               /* initialized data */
     
    4848                kdata_end = .;
    4949        }
    50        
     50
    5151#ifdef CONFIG_LINE_DEBUG
    5252        .comment 0 : { *(.comment); }
     
    6161        .debug_str 0 : { *(.debug_str); }
    6262#endif
    63        
     63
    6464        /DISCARD/ : {
    6565                *(*);
    6666        }
    67        
     67
    6868#ifdef CONFIG_SMP
    69        
     69
    7070        _hardcoded_unmapped_size = (unmapped_ktext_end - unmapped_ktext_start) + (unmapped_kdata_end - unmapped_kdata_start);
    7171        ap_boot = unmapped_ap_boot - BOOT_OFFSET + AP_BOOT_OFFSET;
    7272        ap_gdtr = unmapped_ap_gdtr - BOOT_OFFSET + AP_BOOT_OFFSET;
    7373        protected_ap_gdtr = PA2KA(ap_gdtr);
    74        
     74
    7575#endif /* CONFIG_SMP */
    76        
     76
    7777}
Note: See TracChangeset for help on using the changeset viewer.