Changeset a71c158 in mainline for kernel/arch/ppc32/src/ppc32.c
- Timestamp:
- 2009-08-21T14:12:45Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0e6dce8, b50b5af2, e5792d1
- Parents:
- 90c8b8d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ppc32/src/ppc32.c
r90c8b8d ra71c158 143 143 .visual = visual, 144 144 }; 145 fb_init(&fb_prop); 146 } 147 148 /* Consider only a single device for now */ 149 return false; 145 146 outdev_t *fbdev = fb_init(&fb_prop); 147 if (fbdev) 148 stdout_wire(fbdev); 149 } 150 151 return true; 150 152 } 151 153 … … 235 237 } 236 238 237 /** Acquire console back for kernel238 *239 */240 void arch_grab_console(void)241 {242 #ifdef CONFIG_FB243 fb_redraw();244 #endif245 }246 247 /** Return console to userspace248 *249 */250 void arch_release_console(void)251 {252 }253 254 239 /** Construct function pointer 255 240 *
Note:
See TracChangeset
for help on using the changeset viewer.