Changeset 3f74275 in mainline for uspace


Ignore:
Timestamp:
2017-08-20T16:45:01Z (8 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e68765e
Parents:
e7ac23d0
Message:

Fix terminology around capabilities, capability handles and kernel objects

Location:
uspace
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/char/ns8250/ns8250.c

    re7ac23d0 r3f74275  
    160160        /** The irq assigned to this device. */
    161161        int irq;
    162         /** IRQ capability */
     162        /** IRQ capability handle */
    163163        int irq_cap;
    164164        /** The base i/o address of the devices registers. */
  • uspace/drv/nic/e1k/e1k.c

    re7ac23d0 r3f74275  
    12531253 * @param nic Driver data
    12541254 *
    1255  * @return IRQ capability if the handler was registered
     1255 * @return IRQ capability handle if the handler was registered
    12561256 * @return Negative error code otherwise
    12571257 *
  • uspace/drv/nic/rtl8139/driver.c

    re7ac23d0 r3f74275  
    881881 *  @param nic_data  The driver data
    882882 *
    883  *  @return IRQ capability if the handler was registered.
     883 *  @return IRQ capability handle if the handler was registered.
    884884 *  @return Negative error code otherwise.
    885885 */
  • uspace/lib/c/generic/async.c

    re7ac23d0 r3f74275  
    10261026 * @param ucode   Top-half pseudocode handler.
    10271027 *
    1028  * @return IRQ capability on success.
     1028 * @return IRQ capability handle on success.
    10291029 * @return Negative error code.
    10301030 *
     
    10561056/** Unsubscribe from IRQ notification.
    10571057 *
    1058  * @param cap     IRQ capability.
     1058 * @param cap     IRQ capability handle.
    10591059 *
    10601060 * @return Zero on success or a negative error code.
  • uspace/lib/c/generic/irq.c

    re7ac23d0 r3f74275  
    5858 * @param ucode  Top-half pseudocode handler.
    5959 *
    60  * @return IRQ capability returned by the kernel.
     60 * @return IRQ capability handle returned by the kernel.
    6161 * @return Error code returned by the kernel.
    6262 *
     
    7272/** Unsubscribe from IRQ notification.
    7373 *
    74  * @param cap   IRQ capability.
     74 * @param cap   IRQ capability handle.
    7575 *
    7676 * @return Value returned by the kernel.
  • uspace/lib/usbhost/src/ddf_helpers.c

    re7ac23d0 r3f74275  
    748748 * @param[in] gen_irq_code IRQ code generator.
    749749 *
    750  * @return IRQ kernel object capability on success.
     750 * @return IRQ capability handle on success.
    751751 * @return Negative error code.
    752752 */
Note: See TracChangeset for help on using the changeset viewer.