Changes in kernel/arch/ppc32/src/mm/pht.c [63e27ef:38dc82d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ppc32/src/mm/pht.c
r63e27ef r38dc82d 35 35 #include <arch/mm/pht.h> 36 36 #include <arch/mm/tlb.h> 37 #include <assert.h>38 37 #include <interrupt.h> 39 38 #include <mm/as.h> … … 80 79 found = page_mapping_find(as, badvaddr, true, pte); 81 80 82 assert(found);83 assert(pte->present);81 ASSERT(found); 82 ASSERT(pte->present); 84 83 85 84 return found;
Note:
See TracChangeset
for help on using the changeset viewer.