Changeset 132ab5d1 in mainline for uspace/lib/drv/generic/remote_ieee80211.c
- Timestamp:
- 2018-01-30T03:20:45Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5a6cc679
- Parents:
- 8bfb163 (diff), 6a5d05b (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/lib/drv/generic/remote_ieee80211.c
r8bfb163 r132ab5d1 59 59 * 60 60 * @return EOK If the operation was successfully completed, 61 * negativeerror code otherwise.61 * error code otherwise. 62 62 * 63 63 */ … … 75 75 async_exchange_end(exch); 76 76 77 sysarg_t res;77 int res; 78 78 async_wait_for(aid, &res); 79 79 … … 123 123 * 124 124 * @return EOK If the operation was successfully completed, 125 * negativeerror code otherwise.125 * error code otherwise. 126 126 * 127 127 */ … … 130 130 assert(ssid_start); 131 131 132 sysarg_t rc_orig;132 int rc_orig; 133 133 134 134 async_exch_t *exch = async_exchange_begin(dev_sess); … … 137 137 IEEE80211_CONNECT, NULL); 138 138 139 sysarg_t rc = async_data_write_start(exch, ssid_start,139 int rc = async_data_write_start(exch, ssid_start, 140 140 str_size(ssid_start) + 1); 141 141 if (rc != EOK) { … … 190 190 * 191 191 * @return EOK If the operation was successfully completed, 192 * negativeerror code otherwise.192 * error code otherwise. 193 193 * 194 194 */
Note:
See TracChangeset
for help on using the changeset viewer.