Changeset 228e490 in mainline for uspace/srv/hw


Ignore:
Timestamp:
2010-12-14T17:00:02Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a9b6bec, eb221e5
Parents:
dd8d5a7
Message:

initial modifications for supporting declarative IPC interfaces

Location:
uspace/srv/hw
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hw/bus/cuda_adb/cuda_adb.c

    rdd8d5a7 r228e490  
    220220        while (1) {
    221221                callid = async_get_call(&call);
    222                 method = IPC_GET_METHOD(call);
     222                method = IPC_GET_IMETHOD(call);
    223223                switch (method) {
    224224                case IPC_M_PHONE_HUNGUP:
  • uspace/srv/hw/char/i8042/i8042.c

    rdd8d5a7 r228e490  
    248248        while (1) {
    249249                callid = async_get_call(&call);
    250                 method = IPC_GET_METHOD(call);
     250                method = IPC_GET_IMETHOD(call);
    251251                switch (method) {
    252252                case IPC_M_PHONE_HUNGUP:
  • uspace/srv/hw/char/s3c24xx_uart/s3c24xx_uart.c

    rdd8d5a7 r228e490  
    124124        while (1) {
    125125                callid = async_get_call(&call);
    126                 method = IPC_GET_METHOD(call);
     126                method = IPC_GET_IMETHOD(call);
    127127                switch (method) {
    128128                case IPC_M_PHONE_HUNGUP:
  • uspace/srv/hw/cir/fhc/fhc.c

    rdd8d5a7 r228e490  
    8282       
    8383                callid = async_get_call(&call);
    84                 switch (IPC_GET_METHOD(call)) {
     84                switch (IPC_GET_IMETHOD(call)) {
    8585                case BUS_CLEAR_INTERRUPT:
    8686                        inr = IPC_GET_ARG1(call);
  • uspace/srv/hw/cir/obio/obio.c

    rdd8d5a7 r228e490  
    9292       
    9393                callid = async_get_call(&call);
    94                 switch (IPC_GET_METHOD(call)) {
     94                switch (IPC_GET_IMETHOD(call)) {
    9595                case BUS_CLEAR_INTERRUPT:
    9696                        inr = IPC_GET_ARG1(call);
  • uspace/srv/hw/netif/dp8390/dp8390_module.c

    rdd8d5a7 r228e490  
    6363 *  @param[in] call The interrupt call.
    6464 */
    65 #define IRQ_GET_DEVICE(call)                    (device_id_t) IPC_GET_METHOD(*call)
     65#define IRQ_GET_DEVICE(call)                    (device_id_t) IPC_GET_IMETHOD(*call)
    6666
    6767/** Returns the interrupt status register from the interrupt call.
     
    343343               
    344344                /* End if said to either by the message or the processing result */
    345                 if ((IPC_GET_METHOD(call) == IPC_M_PHONE_HUNGUP) || (res == EHANGUP))
     345                if ((IPC_GET_IMETHOD(call) == IPC_M_PHONE_HUNGUP) || (res == EHANGUP))
    346346                        return;
    347347               
Note: See TracChangeset for help on using the changeset viewer.