Changes in uspace/lib/net/netif/netif_skel.c [79ae36dd:ffa2c8ef] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/netif/netif_skel.c
r79ae36dd rffa2c8ef 54 54 #include <nil_remote.h> 55 55 56 // FIXME: remove this header57 #include <kernel/ipc/ipc_methods.h>58 59 56 DEVICE_MAP_IMPLEMENT(netif_device_map, netif_device_t); 60 57 … … 291 288 *count = 0; 292 289 293 if (!IPC_GET_IMETHOD(*call)) 290 switch (IPC_GET_IMETHOD(*call)) { 291 case IPC_M_PHONE_HUNGUP: 294 292 return EOK; 295 293 296 switch (IPC_GET_IMETHOD(*call)) {297 294 case NET_NETIF_PROBE: 298 295 return netif_probe_req_local(0, IPC_GET_DEVICE(*call), … … 388 385 389 386 /* End if said to either by the message or the processing result */ 390 if ((!IPC_GET_IMETHOD(call)) || (res == EHANGUP)) 387 if ((IPC_GET_IMETHOD(call) == IPC_M_PHONE_HUNGUP) || 388 (res == EHANGUP)) 391 389 return; 392 390
Note:
See TracChangeset
for help on using the changeset viewer.