Changeset d1f8a87 in mainline for arch/sparc64
- Timestamp:
- 2006-03-14T10:42:04Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 06e6805
- Parents:
- e74cb73
- Location:
- arch/sparc64/include/mm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/sparc64/include/mm/frame.h
re74cb73 rd1f8a87 30 30 #define __sparc64_FRAME_H__ 31 31 32 #include <arch/types.h>33 34 32 #define FRAME_WIDTH 13 /* 8K */ 35 33 #define FRAME_SIZE (1<<FRAME_WIDTH) 34 35 #ifdef KERNEL 36 #ifndef __ASM__ 37 38 #include <arch/types.h> 36 39 37 40 union frame_address { … … 49 52 50 53 #endif 54 #endif 55 56 #endif -
arch/sparc64/include/mm/page.h
re74cb73 rd1f8a87 30 30 #define __sparc64_PAGE_H__ 31 31 32 #include <mm/page.h>33 32 #include <arch/mm/frame.h> 34 #include <arch/types.h>35 33 36 34 #define PAGE_WIDTH FRAME_WIDTH 37 35 #define PAGE_SIZE FRAME_SIZE 36 37 #ifdef KERNEL 38 39 #include <mm/page.h> 40 #include <arch/types.h> 38 41 39 42 #define KA2PA(x) ((__address) (x)) … … 54 57 extern void page_arch_init(void); 55 58 59 #endif /* KERNEL */ 60 56 61 #endif
Note:
See TracChangeset
for help on using the changeset viewer.