Changeset 24abb85d in mainline for kernel/generic/include/ddi/irq.h


Ignore:
Timestamp:
2017-08-18T23:27:08Z (7 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4d76cfc
Parents:
e9d15d9
Message:

Remove SYS_DEVICE_ASSIGN_DEVNO

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/ddi/irq.h

    re9d15d9 r24abb85d  
    4343#include <proc/task.h>
    4444#include <ipc/ipc.h>
     45
     46typedef enum {
     47        IRQ_HT_KEY_INR,
     48        IRQ_HT_KEY_MODE
     49} irq_ht_key_t;
     50
     51typedef enum {
     52        IRQ_HT_MODE_CLAIM,
     53        IRQ_HT_MODE_NO_CLAIM
     54} irq_ht_mode_t;
    4555
    4656typedef enum {
     
    91101 *
    92102 * If one device has multiple interrupts, there will be multiple irq_t
    93  * instantions with the same devno.
    94  *
     103 * instantions.
    95104 */
    96105typedef struct irq {
     
    112121         */
    113122        bool preack;
    114        
    115         /** Unique device number. -1 if not yet assigned. */
    116         devno_t devno;
    117123       
    118124        /** Actual IRQ number. -1 if not yet assigned. */
Note: See TracChangeset for help on using the changeset viewer.