Changeset d5c1051 in mainline for uspace/lib/drv/generic/remote_nic.c


Ignore:
Timestamp:
2017-12-20T22:25:34Z (6 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
39b54fe
Parents:
8610c2c
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2017-12-20 22:22:29)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2017-12-20 22:25:34)
Message:

"Obviously harmless" error handling tweaks.

File:
1 edited

Legend:

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

    r8610c2c rd5c1051  
    216216                return rc;
    217217       
    218         return (int) res;
     218        return res;
    219219}
    220220
     
    243243                return rc;
    244244       
    245         return (int) res;
     245        return res;
    246246}
    247247
     
    301301                return rc;
    302302       
    303         return (int) res;
     303        return res;
    304304}
    305305
     
    635635                return rc;
    636636       
    637         return (int) res;
     637        return res;
    638638}
    639639
     
    723723                return rc;
    724724       
    725         return (int) res;
     725        return res;
    726726}
    727727
     
    884884                return rc;
    885885       
    886         return (int) res;
     886        return res;
    887887}
    888888
     
    944944                return rc;
    945945       
    946         return (int) res;
     946        return res;
    947947}
    948948
     
    10111011       
    10121012        *id = IPC_GET_ARG1(result);
    1013         return (int) res;
     1013        return res;
    10141014}
    10151015
     
    13171317                return rc;
    13181318       
    1319         return (int) res;
     1319        return res;
    13201320}
    13211321
Note: See TracChangeset for help on using the changeset viewer.