Changeset 1affcdf3 in mainline for uspace/srv/hw/irc/apic/apic.c


Ignore:
Timestamp:
2011-06-10T19:33:41Z (13 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1878386
Parents:
13ecdac9 (diff), 79a141a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes

File:
1 edited

Legend:

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

    r13ecdac9 r1affcdf3  
    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.