Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/arm32/src/mm.c

    r193d280c rf7fba727  
    116116        if (address >= AM335x_RAM_START && address < AM335x_RAM_END)
    117117                return 1;
    118 #elif defined MACHINE_raspberrypi
    119         if (address < BCM2835_RAM_END)
    120                 return 1;
    121118#endif
    122119        return address * 0;
     
    193190}
    194191
    195 static void enable_paging(void)
    196 {
    197         /*
    198          * c3   - each two bits controls access to the one of domains (16)
     192static void enable_paging()
     193{
     194        /* c3   - each two bits controls access to the one of domains (16)
    199195         * 0b01 - behave as a client (user) of a domain
    200196         */
     
    233229
    234230/** Start the MMU - initialize page table and enable paging. */
    235 void mmu_start(void)
    236 {
     231void mmu_start() {
    237232        disable_paging();
    238233#ifdef PROCESSOR_ARCH_armv7_a
Note: See TracChangeset for help on using the changeset viewer.