- Timestamp:
- 2017-08-20T16:45:01Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e68765e
- Parents:
- e7ac23d0
- Location:
- uspace
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/char/ns8250/ns8250.c
re7ac23d0 r3f74275 160 160 /** The irq assigned to this device. */ 161 161 int irq; 162 /** IRQ capability */162 /** IRQ capability handle */ 163 163 int irq_cap; 164 164 /** The base i/o address of the devices registers. */ -
uspace/drv/nic/e1k/e1k.c
re7ac23d0 r3f74275 1253 1253 * @param nic Driver data 1254 1254 * 1255 * @return IRQ capability if the handler was registered1255 * @return IRQ capability handle if the handler was registered 1256 1256 * @return Negative error code otherwise 1257 1257 * -
uspace/drv/nic/rtl8139/driver.c
re7ac23d0 r3f74275 881 881 * @param nic_data The driver data 882 882 * 883 * @return IRQ capability if the handler was registered.883 * @return IRQ capability handle if the handler was registered. 884 884 * @return Negative error code otherwise. 885 885 */ -
uspace/lib/c/generic/async.c
re7ac23d0 r3f74275 1026 1026 * @param ucode Top-half pseudocode handler. 1027 1027 * 1028 * @return IRQ capability on success.1028 * @return IRQ capability handle on success. 1029 1029 * @return Negative error code. 1030 1030 * … … 1056 1056 /** Unsubscribe from IRQ notification. 1057 1057 * 1058 * @param cap IRQ capability .1058 * @param cap IRQ capability handle. 1059 1059 * 1060 1060 * @return Zero on success or a negative error code. -
uspace/lib/c/generic/irq.c
re7ac23d0 r3f74275 58 58 * @param ucode Top-half pseudocode handler. 59 59 * 60 * @return IRQ capability returned by the kernel.60 * @return IRQ capability handle returned by the kernel. 61 61 * @return Error code returned by the kernel. 62 62 * … … 72 72 /** Unsubscribe from IRQ notification. 73 73 * 74 * @param cap IRQ capability .74 * @param cap IRQ capability handle. 75 75 * 76 76 * @return Value returned by the kernel. -
uspace/lib/usbhost/src/ddf_helpers.c
re7ac23d0 r3f74275 748 748 * @param[in] gen_irq_code IRQ code generator. 749 749 * 750 * @return IRQ kernel object capabilityon success.750 * @return IRQ capability handle on success. 751 751 * @return Negative error code. 752 752 */
Note:
See TracChangeset
for help on using the changeset viewer.