Ignore:
File:
1 edited

Legend:

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

    r79ae36dd rccca251  
    3838#include <ipc/services.h>
    3939#include <ipc/irc.h>
    40 #include <ns.h>
     40#include <ipc/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                
    8781                switch (IPC_GET_IMETHOD(call)) {
    8882                case IRC_ENABLE_INTERRUPT:
     
    108102       
    109103        if ((sysinfo_get_value("apic", &apic) != EOK) || (!apic)) {
    110                 printf("%s: No APIC found\n", NAME);
     104                printf(NAME ": No APIC found\n");
    111105                return false;
    112106        }
     
    120114int main(int argc, char **argv)
    121115{
    122         printf("%s: HelenOS APIC driver\n", NAME);
     116        printf(NAME ": HelenOS APIC driver\n");
    123117       
    124118        if (!apic_init())
    125119                return -1;
    126120       
    127         printf("%s: Accepting connections\n", NAME);
    128         task_retval(0);
     121        printf(NAME ": Accepting connections\n");
    129122        async_manager();
    130123       
Note: See TracChangeset for help on using the changeset viewer.