Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/sparc64/src/drivers/scr.c

    r19490ce ra71c158  
    3535#include <arch/drivers/scr.h>
    3636#include <genarch/ofw/ofw_tree.h>
     37#include <genarch/ofw/pci.h>
     38#include <genarch/ofw/sbus.h>
     39#include <genarch/ofw/upa.h>
    3740#include <genarch/fb/fb.h>
    3841#include <genarch/fb/visuals.h>
     42#include <console/chardev.h>
     43#include <console/console.h>
    3944#include <arch/types.h>
    4045#include <string.h>
     
    235240                .visual = visual,
    236241        };
    237         fb_init(&props);
     242       
     243        outdev_t *fbdev = fb_init(&props);
     244        if (fbdev)
     245                stdout_wire(fbdev);
    238246}
    239247
    240 void scr_redraw(void)
    241 {
    242         fb_redraw();
    243 }
    244 
    245248/** @}
    246249 */
Note: See TracChangeset for help on using the changeset viewer.