Changeset 19a1800 in mainline for uspace/srv/net/nil/eth/eth.c
- Timestamp:
- 2011-03-01T22:20:56Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e24e7b1
- Parents:
- 976f546 (diff), ac8285d (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/nil/eth/eth.c
r976f546 r19a1800 43 43 #include <str.h> 44 44 #include <errno.h> 45 46 #include <ipc/ipc.h>47 45 #include <ipc/nil.h> 48 46 #include <ipc/net.h> 49 47 #include <ipc/services.h> 50 51 48 #include <net/modules.h> 52 49 #include <net_checksum.h> … … 242 239 nil_device_state_msg_local(0, IPC_GET_DEVICE(*icall), 243 240 IPC_GET_STATE(*icall)); 244 ipc_answer_0(iid, EOK);241 async_answer_0(iid, EOK); 245 242 break; 246 243 case NET_NIL_RECEIVED: … … 251 248 IPC_GET_DEVICE(*icall), packet, 0); 252 249 253 ipc_answer_0(iid, (sysarg_t) rc);250 async_answer_0(iid, (sysarg_t) rc); 254 251 break; 255 252 default: 256 ipc_answer_0(iid, (sysarg_t) ENOTSUP);253 async_answer_0(iid, (sysarg_t) ENOTSUP); 257 254 } 258 255
Note:
See TracChangeset
for help on using the changeset viewer.