Ignore:
Timestamp:
2011-07-20T15:26:21Z (13 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
efcebe1
Parents:
25bef0ff (diff), a701812 (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/bus/cuda_adb/cuda_adb.c

    r25bef0ff r6a44ee4  
    4848#include <ipc/adb.h>
    4949#include <async.h>
     50#include <async_obsolete.h>
    5051#include <assert.h>
    5152#include "cuda_adb.h"
    5253
     54// FIXME: remove this header
     55#include <kernel/ipc/ipc_methods.h>
     56
    5357#define NAME "cuda_adb"
    5458
    55 static void cuda_connection(ipc_callid_t iid, ipc_call_t *icall);
     59static void cuda_connection(ipc_callid_t iid, ipc_call_t *icall, void *arg);
    5660static int cuda_init(void);
    5761static void cuda_irq_handler(ipc_callid_t iid, ipc_call_t *call);
     
    189193
    190194/** Character device connection handler */
    191 static void cuda_connection(ipc_callid_t iid, ipc_call_t *icall)
     195static void cuda_connection(ipc_callid_t iid, ipc_call_t *icall, void *arg)
    192196{
    193197        ipc_callid_t callid;
     
    219223                callid = async_get_call(&call);
    220224                method = IPC_GET_IMETHOD(call);
    221                 switch (method) {
    222                 case IPC_M_PHONE_HUNGUP:
     225               
     226                if (!method) {
    223227                        /* The other side has hung up. */
    224228                        async_answer_0(callid, EOK);
    225229                        return;
     230                }
     231               
     232                switch (method) {
    226233                case IPC_M_CONNECT_TO_ME:
    227234                        if (adb_dev[dev_addr].client_phone != -1) {
     
    479486                return;
    480487
    481         async_msg_1(adb_dev[dev_addr].client_phone, ADB_REG_NOTIF, reg_val);
     488        async_obsolete_msg_1(adb_dev[dev_addr].client_phone, ADB_REG_NOTIF, reg_val);
    482489}
    483490
Note: See TracChangeset for help on using the changeset viewer.