Changeset 1433ecda in mainline for kernel/generic/include/ddi/irq.h
- Timestamp:
- 2018-04-04T15:42:37Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2c4e1cc
- Parents:
- 47b2d7e3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ddi/irq.h
r47b2d7e3 r1433ecda 57 57 struct irq; 58 58 59 typedef void (* 59 typedef void (*irq_handler_t)(struct irq *); 60 60 61 61 /** Type for function used to clear the interrupt. */ 62 typedef void (* 62 typedef void (*cir_t)(void *, inr_t); 63 63 64 64 /** IPC notification config structure. … … 114 114 irq_trigger_t trigger; 115 115 /** Claim ownership of the IRQ. */ 116 irq_ownership_t (* 116 irq_ownership_t (*claim)(struct irq *); 117 117 /** Handler for this IRQ and device. */ 118 118 irq_handler_t handler;
Note:
See TracChangeset
for help on using the changeset viewer.