Changeset c477c80 in mainline for uspace/lib


Ignore:
Timestamp:
2019-01-03T22:23:00Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
06412ba
Parents:
7acd787
Message:

Fix some common misspellings

Location:
uspace/lib
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/as.c

    r7acd787 rc477c80  
    126126 *
    127127 * @param      virt Virtual address to find mapping for.
    128  * @param[out] phys Physical adress.
     128 * @param[out] phys Physical address.
    129129 *
    130130 * @return EOK on no error.
  • uspace/lib/c/generic/loc.c

    r7acd787 rc477c80  
    239239}
    240240
    241 /** Register new driver with loc. */
     241/** Register new server with loc. */
    242242errno_t loc_server_register(const char *name)
    243243{
  • uspace/lib/c/generic/vol.c

    r7acd787 rc477c80  
    220220 * @param vol Volume service
    221221 * @param sid Service ID of the partition
    222  * @param vinfo Place to sore partition information
     222 * @param vinfo Place to store partition information
    223223 * @return EOK on success or an error code
    224224 */
     
    578578 * @param vol Volume service
    579579 * @param vid Volume ID
    580  * @param vinfo Place to sore volume configuration information
     580 * @param vinfo Place to store volume configuration information
    581581 * @return EOK on success or an error code
    582582 */
  • uspace/lib/nettl/include/nettl/amap.h

    r7acd787 rc477c80  
    8282        /** Local links */
    8383        list_t llink; /* of amap_llink_t */
    84         /** Nothing specified (listen on all local adresses) */
     84        /** Nothing specified (listen on all local addresses) */
    8585        portrng_t *unspec;
    8686} amap_t;
  • uspace/lib/nic/src/nic_addr_db.c

    r7acd787 rc477c80  
    163163 * @return EOK          If the address was inserted
    164164 * @return ENOMEM       If there was not enough memory
    165  * @return EEXIST       If this adress already is in the db
     165 * @return EEXIST       If this address already is in the db
    166166 */
    167167errno_t nic_addr_db_insert(nic_addr_db_t *db, const uint8_t *addr)
  • uspace/lib/nic/src/nic_driver.c

    r7acd787 rc477c80  
    418418}
    419419
    420 /** Inform the NICF about device's MAC adress.
     420/** Inform the NICF about device's MAC address.
    421421 *
    422422 * @return EOK On success
Note: See TracChangeset for help on using the changeset viewer.