Changeset 0ffa3ef5 in mainline for arch/sparc64/src/sparc64.c


Ignore:
Timestamp:
2006-07-10T20:57:30Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
11675207
Parents:
7f1c620
Message:

Sync OpenFirmware functionality with boot.
Random cleanup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/sparc64/src/sparc64.c

    r7f1c620 r0ffa3ef5  
    4141#include <console/console.h>
    4242
     43#include <print.h>
     44#include <genarch/ofw/ofw.h>
     45#include <arch/asm.h>
     46#include <arch/register.h>
    4347void arch_pre_mm_init(void)
    4448{
    4549        interrupts_disable();
    4650        ofw_sparc64_console_init();
     51
    4752        trap_init();
    4853        tick_init();
     
    6166{
    6267        thread_t *t;
    63 
    64         /*
    65          * Create thread that reads characters from OFW's input.
    66          */
    67         t = thread_create(kofwinput, NULL, TASK, 0, "kofwinput");
    68         if (!t)
    69                 panic("cannot create kofwinput\n");
    70         thread_ready(t);
    7168
    7269        /*
Note: See TracChangeset for help on using the changeset viewer.