Ignore:
Timestamp:
2018-01-30T03:20:45Z (7 years ago)
Author:
Jenda <jenda.jzqk73@…>
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.
Message:

Merge commit '6a5d05bd2551e64111bea4f9332dd7448c26ce84' into forwardport

Separate return value from error code in gen_irq_code*().

File:
1 edited

Legend:

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

    r8bfb163 r132ab5d1  
    5959 *
    6060 * @return EOK If the operation was successfully completed,
    61  *         negative error code otherwise.
     61 *         error code otherwise.
    6262 *
    6363 */
     
    7575        async_exchange_end(exch);
    7676       
    77         sysarg_t res;
     77        int res;
    7878        async_wait_for(aid, &res);
    7979       
     
    123123 *
    124124 * @return EOK If the operation was successfully completed,
    125  *         negative error code otherwise.
     125 *         error code otherwise.
    126126 *
    127127 */
     
    130130        assert(ssid_start);
    131131       
    132         sysarg_t rc_orig;
     132        int rc_orig;
    133133       
    134134        async_exch_t *exch = async_exchange_begin(dev_sess);
     
    137137            IEEE80211_CONNECT, NULL);
    138138       
    139         sysarg_t rc = async_data_write_start(exch, ssid_start,
     139        int 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  *         negative error code otherwise.
     192 *         error code otherwise.
    193193 *
    194194 */
Note: See TracChangeset for help on using the changeset viewer.