Changeset 1bfd3d3 in mainline for uspace/srv/net/net/net.c


Ignore:
Timestamp:
2010-11-19T22:02:09Z (13 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
973ef9fc, a9c6b966
Parents:
cc3c2a1c
Message:

Replace @returns with @return.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/net/net.c

    rcc3c2a1c r1bfd3d3  
    8686 * @param[in] value         The setting value.
    8787 *
    88  * @returns EOK on success.
    89  * @returns ENOMEM if there is not enough memory left.
     88 * @return EOK on success.
     89 * @return ENOMEM if there is not enough memory left.
    9090 *
    9191 */
     
    112112/** Generate new system-unique device identifier.
    113113 *
    114  * @returns             The system-unique devic identifier.
     114 * @return              The system-unique devic identifier.
    115115 */
    116116static device_id_t generate_new_device_id(void)
     
    237237 * @param[in,out] netif The network interface structure.
    238238 *
    239  * @returns EOK on success.
    240  * @returns Other error codes as defined for the add_configuration() function.
     239 * @return EOK on success.
     240 * @return Other error codes as defined for the add_configuration() function.
    241241 *
    242242 */
     
    248248/** Read the networking subsystem global configuration.
    249249 *
    250  * @returns EOK on success.
    251  * @returns Other error codes as defined for the add_configuration() function.
     250 * @return EOK on success.
     251 * @return Other error codes as defined for the add_configuration() function.
    252252 *
    253253 */
     
    264264 *                              its own one.
    265265 *
    266  * @returns EOK on success.
    267  * @returns ENOMEM if there is not enough memory left.
     266 * @return EOK on success.
     267 * @return ENOMEM if there is not enough memory left.
    268268 *
    269269 */
     
    315315 *                              its own one.
    316316 *
    317  * @returns EOK on successful module termination.
    318  * @returns Other error codes as defined for the net_initialize() function.
    319  * @returns Other error codes as defined for the REGISTER_ME() macro function.
     317 * @return EOK on successful module termination.
     318 * @return Other error codes as defined for the net_initialize() function.
     319 * @return Other error codes as defined for the REGISTER_ME() macro function.
    320320 *
    321321 */
     
    360360 * @param[out] data          The found configuration settings data.
    361361 *
    362  * @returns EOK.
     362 * @return EOK.
    363363 *
    364364 */
     
    422422 * @param[in] netif The network interface specific data.
    423423 *
    424  * @returns EOK on success.
    425  * @returns EINVAL if there are some settings missing.
    426  * @returns ENOENT if the internet protocol module is not known.
    427  * @returns Other error codes as defined for the netif_probe_req() function.
    428  * @returns Other error codes as defined for the nil_device_req() function.
    429  * @returns Other error codes as defined for the needed internet layer
    430  *          registering function.
     424 * @return EOK on success.
     425 * @return EINVAL if there are some settings missing.
     426 * @return ENOENT if the internet protocol module is not known.
     427 * @return Other error codes as defined for the netif_probe_req() function.
     428 * @return Other error codes as defined for the nil_device_req() function.
     429 * @return Other error codes as defined for the needed internet layer
     430 *         registering function.
    431431 *
    432432 */
     
    514514/** Read the configuration and start all network interfaces.
    515515 *
    516  * @returns EOK on success.
    517  * @returns EXDEV if there is no available system-unique device identifier.
    518  * @returns EINVAL if any of the network interface names are not configured.
    519  * @returns ENOMEM if there is not enough memory left.
    520  * @returns Other error codes as defined for the read_configuration()
    521  *          function.
    522  * @returns Other error codes as defined for the read_netif_configuration()
    523  *          function.
    524  * @returns Other error codes as defined for the start_device() function.
     516 * @return EOK on success.
     517 * @return EXDEV if there is no available system-unique device identifier.
     518 * @return EINVAL if any of the network interface names are not configured.
     519 * @return ENOMEM if there is not enough memory left.
     520 * @return Other error codes as defined for the read_configuration()
     521 *         function.
     522 * @return Other error codes as defined for the read_netif_configuration()
     523 *         function.
     524 * @return Other error codes as defined for the start_device() function.
    525525 *
    526526 */
     
    617617 *                          in the answer parameter.
    618618 *
    619  * @returns EOK on success.
    620  * @returns ENOTSUP if the message is not known.
     619 * @return EOK on success.
     620 * @return ENOTSUP if the message is not known.
    621621 *
    622622 * @see net_interface.h
Note: See TracChangeset for help on using the changeset viewer.