Ignore:
Timestamp:
2017-10-17T13:11:35Z (8 years ago)
Author:
Ondřej Hlavatý <aearsis@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
60af4cdb
Parents:
dbf32b1 (diff), a416d070 (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.
Message:

Merge mainline

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia64/include/arch/mm/page.h

    rdbf32b1 r95c675b  
    3838
    3939#include <arch/mm/frame.h>
     40
     41#ifndef __ASM__
     42#include <assert.h>
     43#endif
    4044
    4145#define PAGE_SIZE   FRAME_SIZE
     
    232236        uint64_t ret;
    233237       
    234         ASSERT(i < REGION_REGISTERS);
     238        assert(i < REGION_REGISTERS);
    235239       
    236240        asm volatile (
     
    250254NO_TRACE static inline void rr_write(size_t i, uint64_t v)
    251255{
    252         ASSERT(i < REGION_REGISTERS);
     256        assert(i < REGION_REGISTERS);
    253257       
    254258        asm volatile (
Note: See TracChangeset for help on using the changeset viewer.