Changes in kernel/arch/sparc64/src/mm/page.c [17646b1:9d58539] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified kernel/arch/sparc64/src/mm/page.c ¶
r17646b1 r9d58539 33 33 */ 34 34 35 #include <mm/page.h> 35 36 #include <arch/mm/page.h> 36 37 #include <arch/mm/tlb.h> … … 50 51 } 51 52 52 /** Map memory-mapped device into virtual memory.53 *54 * We are currently using identity mapping for mapping device registers.55 *56 * @param physaddr Physical address of the page where the device is57 * located.58 * @param size Size of the device's registers.59 *60 * @return Virtual address of the page where the device is mapped.61 *62 */63 uintptr_t hw_map(uintptr_t physaddr, size_t size)64 {65 return PA2KA(physaddr);66 }67 68 53 /** @} 69 54 */
Note:
See TracChangeset
for help on using the changeset viewer.