Changeset ba4a63b8 in mainline


Ignore:
Timestamp:
2010-05-14T17:29:52Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9644c69
Parents:
c964521
Message:

Coding style fix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia32/src/mm/frame.c

    rc964521 rba4a63b8  
    5555{
    5656        unsigned int i;
     57
    5758        for (i = 0; i < e820counter; i++) {
    5859                uint64_t base = e820table[i].base_address;
     
    6061               
    6162#ifdef __32_BITS__
    62                
    6363                /* Ignore physical memory above 4 GB */
    6464                if ((base >> 32) != 0)
     
    6868                if (((base + size) >> 32) != 0)
    6969                        size = 0xffffffff - base;
    70                
    7170#endif
     71
    7272                pfn_t pfn;
    7373                size_t count;
     
    118118};
    119119
    120 
    121120void physmem_print(void)
    122121{
     
    134133               
    135134                printf("%#18llx %#18llx %s\n", e820table[i].base_address,
    136                         e820table[i].size, name);
     135                    e820table[i].size, name);
    137136        }
    138137}
     
    148147#ifdef CONFIG_SMP
    149148                minconf = max(minconf,
    150                         ADDR2PFN(AP_BOOT_OFFSET + hardcoded_unmapped_ktext_size +
    151                         hardcoded_unmapped_kdata_size));
     149                    ADDR2PFN(AP_BOOT_OFFSET + hardcoded_unmapped_ktext_size +
     150                    hardcoded_unmapped_kdata_size));
    152151#endif
     152
    153153                init_e820_memory(minconf);
    154154               
     
    159159                /* Reserve AP real mode bootstrap memory */
    160160                frame_mark_unavailable(AP_BOOT_OFFSET >> FRAME_WIDTH,
    161                         (hardcoded_unmapped_ktext_size +
    162                         hardcoded_unmapped_kdata_size) >> FRAME_WIDTH);
     161                    (hardcoded_unmapped_ktext_size +
     162                    hardcoded_unmapped_kdata_size) >> FRAME_WIDTH);
    163163#endif
    164164        }
Note: See TracChangeset for help on using the changeset viewer.