Changeset 347 for GPL/trunk/lib32/misc.c
- Timestamp:
- Apr 21, 2008, 2:46:45 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk/lib32/misc.c
r73 r347 120 120 //****************************************************************************** 121 121 //****************************************************************************** 122 mem_map_t *virt_to_page(int x) 123 { 124 static mem_map_t map = {0}; 125 return ↦ 122 pgprot_t __pgprot(int x) 123 { 124 unsigned long long cast_x; 125 pgprot_t pg; 126 cast_x = (unsigned long long) (x); 127 pg.pgprot = cast_x; 128 return (pg); 126 129 } 127 130 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.