Changeset 228e490 in mainline for uspace/lib/drv/generic/driver.c
- Timestamp:
- 2010-12-14T17:00:02Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a9b6bec, eb221e5
- Parents:
- dd8d5a7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/generic/driver.c
rdd8d5a7 r228e490 81 81 static void driver_irq_handler(ipc_callid_t iid, ipc_call_t *icall) 82 82 { 83 int id = (int)IPC_GET_ METHOD(*icall);83 int id = (int)IPC_GET_IMETHOD(*icall); 84 84 interrupt_context_t *ctx; 85 85 … … 200 200 ipc_callid_t callid = async_get_call(&call); 201 201 202 switch (IPC_GET_ METHOD(call)) {202 switch (IPC_GET_IMETHOD(call)) { 203 203 case IPC_M_PHONE_HUNGUP: 204 204 cont = false; … … 254 254 ipc_call_t call; 255 255 callid = async_get_call(&call); 256 sysarg_t method = IPC_GET_ METHOD(call);256 sysarg_t method = IPC_GET_IMETHOD(call); 257 257 int iface_idx; 258 258
Note:
See TracChangeset
for help on using the changeset viewer.