Changeset 08e3ca4 in mainline for uspace/srv/net/nil/eth
- Timestamp:
- 2010-11-03T22:31:48Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d8f95529
- Parents:
- 02314f8
- File:
-
- 1 edited
-
uspace/srv/net/nil/eth/eth_module.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/nil/eth/eth_module.c
r02314f8 r08e3ca4 63 63 64 64 rc = nil_initialize(net_phone); 65 if (rc != EOK) { 66 pm_destroy(); 67 return rc; 68 } 65 if (rc != EOK) 66 goto out; 69 67 70 68 rc = REGISTER_ME(SERVICE_ETHERNET, &phonehash); 71 if (rc != EOK) { 72 pm_destroy(); 73 return rc; 74 } 69 if (rc != EOK) 70 goto out; 75 71 76 72 async_manager(); 77 73 74 out: 78 75 pm_destroy(); 79 return EOK;76 return rc; 80 77 } 81 78
Note:
See TracChangeset
for help on using the changeset viewer.
