Ignore:
Timestamp:
2011-02-09T11:46:47Z (14 years ago)
Author:
Martin Sucha <sucha14@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
cb15135a
Parents:
a49c4002 (diff), 0b37882 (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

Local modifications:

  • change pipefs and ext2 to build again (use async_* calls instead of ipc_*)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified uspace/srv/hid/s3c24xx_ts/s3c24xx_ts.c

    ra49c4002 rcf2af94  
    4242#include <io/console.h>
    4343#include <vfs/vfs.h>
    44 #include <ipc/ipc.h>
    4544#include <ipc/mouse.h>
    4645#include <async.h>
     
    102101        rc = devmap_device_register(NAMESPACE "/mouse", &ts->devmap_handle);
    103102        if (rc != EOK) {
    104                 devmap_hangup_phone(DEVMAP_DRIVER);
    105103                printf(NAME ": Unable to register device %s.\n",
    106104                    NAMESPACE "/mouse");
     
    141139
    142140        async_set_interrupt_received(s3c24xx_ts_irq_handler);
    143         ipc_register_irq(inr, device_assign_devno(), 0, &ts_irq_code);
     141        register_irq(inr, device_assign_devno(), 0, &ts_irq_code);
    144142
    145143        s3c24xx_ts_wait_for_int_mode(ts, updn_down);
     
    378376        int retval;
    379377
    380         ipc_answer_0(iid, EOK);
     378        async_answer_0(iid, EOK);
    381379
    382380        while (1) {
    383381                callid = async_get_call(&call);
    384                 switch (IPC_GET_METHOD(call)) {
     382                switch (IPC_GET_IMETHOD(call)) {
    385383                case IPC_M_PHONE_HUNGUP:
    386384                        if (ts->client_phone != -1) {
    387                                 ipc_hangup(ts->client_phone);
     385                                async_hangup(ts->client_phone);
    388386                                ts->client_phone = -1;
    389387                        }
    390388
    391                         ipc_answer_0(callid, EOK);
     389                        async_answer_0(callid, EOK);
    392390                        return;
    393391                case IPC_M_CONNECT_TO_ME:
     
    402400                        retval = EINVAL;
    403401                }
    404                 ipc_answer_0(callid, retval);
     402                async_answer_0(callid, retval);
    405403        }
    406404}
Note: See TracChangeset for help on using the changeset viewer.