Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/drv/generic/interrupt.c

    r7edfde9 r8820544  
    4444#include "private/driver.h"
    4545
     46static irq_cmd_t default_cmds[] = {
     47        {
     48                .cmd = CMD_ACCEPT
     49        }
     50};
     51
     52static const irq_code_t default_pseudocode = {
     53        0,
     54        NULL,
     55        ARRAY_SIZE(default_cmds),
     56        default_cmds
     57};
     58
    4659int register_interrupt_handler(ddf_dev_t *dev, int irq,
    4760    interrupt_handler_t *handler, const irq_code_t *pseudocode)
Note: See TracChangeset for help on using the changeset viewer.