Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hw/irc/obio/obio.c

    r57d129e r79ae36dd  
    4444#include <ipc/services.h>
    4545#include <ipc/irc.h>
    46 #include <ipc/ns.h>
     46#include <ns.h>
    4747#include <sysinfo.h>
    4848#include <as.h>
     
    118118       
    119119        if (sysinfo_get_value("obio.base.physical", &paddr) != EOK) {
    120                 printf(NAME ": no OBIO registers found\n");
     120                printf("%s: No OBIO registers found\n", NAME);
    121121                return false;
    122122        }
     
    130130       
    131131        if (retval < 0) {
    132                 printf(NAME ": Error mapping OBIO registers\n");
     132                printf("%s: Error mapping OBIO registers\n", NAME);
    133133                return false;
    134134        }
    135135       
    136         printf(NAME ": OBIO registers with base at %p\n", base_phys);
     136        printf("%s: OBIO registers with base at %p\n", NAME, base_phys);
    137137       
    138138        async_set_client_connection(obio_connection);
     
    144144int main(int argc, char **argv)
    145145{
    146         printf(NAME ": HelenOS OBIO driver\n");
     146        printf("%s: HelenOS OBIO driver\n", NAME);
    147147       
    148148        if (!obio_init())
    149149                return -1;
    150150       
    151         printf(NAME ": Accepting connections\n");
     151        printf("%s: Accepting connections\n", NAME);
     152        task_retval(0);
    152153        async_manager();
    153 
     154       
    154155        /* Never reached */
    155156        return 0;
     
    158159/**
    159160 * @}
    160  */ 
     161 */
Note: See TracChangeset for help on using the changeset viewer.