Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/drv/generic/remote_ieee80211.c

    rcde999a r8a64320e  
    5959 *
    6060 * @return EOK If the operation was successfully completed,
    61  *         error code otherwise.
     61 *         negative error code otherwise.
    6262 *
    6363 */
     
    7575        async_exchange_end(exch);
    7676       
    77         int res;
     77        sysarg_t res;
    7878        async_wait_for(aid, &res);
    7979       
     
    123123 *
    124124 * @return EOK If the operation was successfully completed,
    125  *         error code otherwise.
     125 *         negative error code otherwise.
    126126 *
    127127 */
     
    130130        assert(ssid_start);
    131131       
    132         int rc_orig;
     132        sysarg_t rc_orig;
    133133       
    134134        async_exch_t *exch = async_exchange_begin(dev_sess);
     
    137137            IEEE80211_CONNECT, NULL);
    138138       
    139         int rc = async_data_write_start(exch, ssid_start,
     139        sysarg_t rc = async_data_write_start(exch, ssid_start,
    140140            str_size(ssid_start) + 1);
    141141        if (rc != EOK) {
     
    190190 *
    191191 * @return EOK If the operation was successfully completed,
    192  *         error code otherwise.
     192 *         negative error code otherwise.
    193193 *
    194194 */
Note: See TracChangeset for help on using the changeset viewer.