Changeset 8cbf1c3 in mainline for kernel/arch/arm32/src/ras.c


Ignore:
Timestamp:
2013-09-09T23:13:10Z (11 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e2a0d76
Parents:
c67dbd6
Message:

prepare the public API of the frame allocator for the new backend
remove FRAME_KA (can be easily implemented explicitly)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/arm32/src/ras.c

    rc67dbd6 r8cbf1c3  
    5353        uintptr_t frame;
    5454
    55         frame = (uintptr_t) frame_alloc(ONE_FRAME,
    56             FRAME_ATOMIC | FRAME_HIGHMEM);
     55        frame = frame_alloc(ONE_FRAME,
     56            FRAME_ATOMIC | FRAME_HIGHMEM, 0);
    5757        if (!frame)
    58                 frame = (uintptr_t) frame_alloc(ONE_FRAME, FRAME_LOWMEM);
     58                frame = frame_alloc(ONE_FRAME, FRAME_LOWMEM, 0);
    5959        ras_page = (uintptr_t *) km_map(frame,
    6060            PAGE_SIZE, PAGE_READ | PAGE_WRITE | PAGE_USER | PAGE_CACHEABLE);
Note: See TracChangeset for help on using the changeset viewer.