Ignore:
File:
1 edited

Legend:

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

    rccca251 r79ae36dd  
    3838#include <ipc/services.h>
    3939#include <ipc/irc.h>
    40 #include <ipc/ns.h>
     40#include <ns.h>
    4141#include <sysinfo.h>
    4242#include <as.h>
     
    7979                callid = async_get_call(&call);
    8080               
     81                if (!IPC_GET_IMETHOD(call)) {
     82                        /* The other side has hung up. */
     83                        async_answer_0(callid, EOK);
     84                        return;
     85                }
     86               
    8187                switch (IPC_GET_IMETHOD(call)) {
    8288                case IRC_ENABLE_INTERRUPT:
     
    102108       
    103109        if ((sysinfo_get_value("apic", &apic) != EOK) || (!apic)) {
    104                 printf(NAME ": No APIC found\n");
     110                printf("%s: No APIC found\n", NAME);
    105111                return false;
    106112        }
     
    114120int main(int argc, char **argv)
    115121{
    116         printf(NAME ": HelenOS APIC driver\n");
     122        printf("%s: HelenOS APIC driver\n", NAME);
    117123       
    118124        if (!apic_init())
    119125                return -1;
    120126       
    121         printf(NAME ": Accepting connections\n");
     127        printf("%s: Accepting connections\n", NAME);
     128        task_retval(0);
    122129        async_manager();
    123130       
Note: See TracChangeset for help on using the changeset viewer.