Ignore:
Timestamp:
2011-06-10T10:14:26Z (14 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ab547063
Parents:
9536e6e (diff), 390d80d (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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hw/char/s3c24xx_uart/s3c24xx_uart.c

    r9536e6e r41811af  
    4242#include <ipc/char.h>
    4343#include <async.h>
     44#include <async_obsolete.h>
    4445#include <unistd.h>
    4546#include <stdio.h>
     
    4849#include <errno.h>
    4950#include <inttypes.h>
    50 
    5151#include "s3c24xx_uart.h"
     52
     53// FIXME: remove this header
     54#include <kernel/ipc/ipc_methods.h>
    5255
    5356#define NAME "s3c24ser"
     
    123126                callid = async_get_call(&call);
    124127                method = IPC_GET_IMETHOD(call);
    125                 switch (method) {
    126                 case IPC_M_PHONE_HUNGUP:
     128               
     129                if (!method) {
    127130                        /* The other side has hung up. */
    128131                        async_answer_0(callid, EOK);
    129132                        return;
     133                }
     134               
     135                switch (method) {
    130136                case IPC_M_CONNECT_TO_ME:
    131137                        printf(NAME ": creating callback connection\n");
     
    156162
    157163                if (uart->client_phone != -1) {
    158                         async_msg_1(uart->client_phone, CHAR_NOTIF_BYTE,
     164                        async_obsolete_msg_1(uart->client_phone, CHAR_NOTIF_BYTE,
    159165                            data);
    160166                }
Note: See TracChangeset for help on using the changeset viewer.