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