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


Ignore:
Timestamp:
2018-03-02T20:21:57Z (6 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/ia32/_link.ld.in

    ra35b458 rf1380b7  
    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.