Changeset b3f8fb7 in mainline for kernel/arch/mips32/include/mm/page.h
- Timestamp:
- 2007-01-28T13:25:49Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8e8c1a5
- Parents:
- 1ba41c5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/include/mm/page.h
r1ba41c5 rb3f8fb7 44 44 45 45 #ifndef __ASM__ 46 # 47 # 46 # define KA2PA(x) (((uintptr_t) (x)) - 0x80000000) 47 # define PA2KA(x) (((uintptr_t) (x)) + 0x80000000) 48 48 #else 49 # 50 # 49 # define KA2PA(x) ((x) - 0x80000000) 50 # define PA2KA(x) ((x) + 0x80000000) 51 51 #endif 52 52 … … 110 110 #ifndef __ASM__ 111 111 112 #include <arch/mm/tlb.h> 113 #include <mm/page.h> 114 #include <arch/mm/frame.h> 115 #include <arch/types.h> 112 #include <mm/mm.h> 113 #include <arch/exception.h> 116 114 117 115 static inline int get_pt_flags(pte_t *pt, index_t i)
Note:
See TracChangeset
for help on using the changeset viewer.