Ignore:
File:
1 edited

Legend:

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

    rffa2c8ef r79ae36dd  
    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.