Changes in kernel/arch/arm32/src/machine_func.c [a71c158:6ac14a70] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/src/machine_func.c
ra71c158 r6ac14a70 41 41 42 42 43 /** Acquire console back for kernel. */ 44 void machine_grab_console(void) 45 { 46 (machine_ops.machine_grab_console)(); 47 } 48 49 /** Return console to userspace. */ 50 void machine_release_console(void) 51 { 52 (machine_ops.machine_release_console)(); 53 } 54 55 43 56 /** Maps HW devices to the kernel address space using #hw_map. */ 44 57 void machine_init(void) … … 71 84 } 72 85 86 /** Initializes the Frame Buffer 87 * 88 */ 89 void machine_fb_init(void) 90 { 91 (machine_ops.machine_fb_init)(); 92 } 93 94 73 95 /** Interrupt exception handler. 74 96 * … … 81 103 } 82 104 105 106 /** Returns address of framebuffer device. 107 * 108 * @return Address of framebuffer device. 109 */ 110 uintptr_t machine_get_fb_address(void) 111 { 112 return (machine_ops.machine_get_fb_address)(); 113 } 83 114 84 115 /*
Note:
See TracChangeset
for help on using the changeset viewer.