Changes in uspace/lib/drv/generic/remote_ieee80211.c [cde999a:8a64320e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/generic/remote_ieee80211.c
rcde999a r8a64320e 59 59 * 60 60 * @return EOK If the operation was successfully completed, 61 * error code otherwise.61 * negative error code otherwise. 62 62 * 63 63 */ … … 75 75 async_exchange_end(exch); 76 76 77 int res;77 sysarg_t res; 78 78 async_wait_for(aid, &res); 79 79 … … 123 123 * 124 124 * @return EOK If the operation was successfully completed, 125 * error code otherwise.125 * negative error code otherwise. 126 126 * 127 127 */ … … 130 130 assert(ssid_start); 131 131 132 int rc_orig;132 sysarg_t rc_orig; 133 133 134 134 async_exch_t *exch = async_exchange_begin(dev_sess); … … 137 137 IEEE80211_CONNECT, NULL); 138 138 139 int rc = async_data_write_start(exch, ssid_start,139 sysarg_t 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 * error code otherwise.192 * negative error code otherwise. 193 193 * 194 194 */
Note:
See TracChangeset
for help on using the changeset viewer.