Changeset 63e27ef in mainline for kernel/arch/ppc32/src/mm/pht.c


Ignore:
Timestamp:
2017-06-19T21:47:42Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
deacc58d
Parents:
7354b5e
Message:

ASSERT → assert

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ppc32/src/mm/pht.c

    r7354b5e r63e27ef  
    3535#include <arch/mm/pht.h>
    3636#include <arch/mm/tlb.h>
     37#include <assert.h>
    3738#include <interrupt.h>
    3839#include <mm/as.h>
     
    7980                found = page_mapping_find(as, badvaddr, true, pte);
    8081
    81                 ASSERT(found);
    82                 ASSERT(pte->present);
     82                assert(found);
     83                assert(pte->present);
    8384
    8485                return found;
Note: See TracChangeset for help on using the changeset viewer.