Changes in kernel/arch/sparc64/src/drivers/scr.c [19490ce:a71c158] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/drivers/scr.c
r19490ce ra71c158 35 35 #include <arch/drivers/scr.h> 36 36 #include <genarch/ofw/ofw_tree.h> 37 #include <genarch/ofw/pci.h> 38 #include <genarch/ofw/sbus.h> 39 #include <genarch/ofw/upa.h> 37 40 #include <genarch/fb/fb.h> 38 41 #include <genarch/fb/visuals.h> 42 #include <console/chardev.h> 43 #include <console/console.h> 39 44 #include <arch/types.h> 40 45 #include <string.h> … … 235 240 .visual = visual, 236 241 }; 237 fb_init(&props); 242 243 outdev_t *fbdev = fb_init(&props); 244 if (fbdev) 245 stdout_wire(fbdev); 238 246 } 239 247 240 void scr_redraw(void)241 {242 fb_redraw();243 }244 245 248 /** @} 246 249 */
Note:
See TracChangeset
for help on using the changeset viewer.