Changeset 101 for trunk/kernel/devices


Ignore:
Timestamp:
Jun 29, 2017, 4:44:52 PM (7 years ago)
Author:
alain
Message:

euh...

Location:
trunk/kernel/devices
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/kernel/devices/dev_ioc.c

    r68 r101  
    126126             " for lba = %x / buffer = %x / at cycle %d\n",
    127127             __FUNCTION__ , this->trdid , this->process->pid ,
    128              lba , (intptr_t)buffer , hal_time_stamp() );
     128             lba , (intptr_t)buffer , hal_get_cycles() );
    129129
    130130    // software L2/L3 cache coherence for memory buffer
     
    155155             " completes / error = %d / at cycle %d\n",
    156156             __FUNCTION__ , this->trdid , this->process->pid ,
    157              this->command.ioc.error , hal_time_stamp() );
     157             this->command.ioc.error , hal_get_cycles() );
    158158
    159159    // return I/O operation status
  • trunk/kernel/devices/dev_txt.c

    r77 r101  
    3030#include <printk.h>
    3131#include <dev_txt.h>
     32#include <soclib_tty.h>
    3233
    3334/////////////////////////////////////////////////////////////////////////////////////////
     
    5758    if( impl == IMPL_TXT_TTY )
    5859    {
    59         hal_drivers_txt_init( chdev );
     60        chdev->cmd = &soclib_tty_cmd;
     61        chdev->isr = &soclib_tty_isr;
     62        soclib_tty_init( chdev );
    6063    }
    6164    else
Note: See TracChangeset for help on using the changeset viewer.