Ignore:
File:
1 edited

Legend:

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

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