Ignore:
File:
1 edited

Legend:

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

    r60744cb r4122410  
    11/*
    2  * Copyright (c) 2024 Jiri Svoboda
    32 * Copyright (c) 2010 Lenka Trochtova
    43 * All rights reserved.
     
    4443
    4544errno_t register_interrupt_handler(ddf_dev_t *dev, int irq,
    46     interrupt_handler_t *handler, void *arg, const irq_code_t *irq_code,
     45    interrupt_handler_t *handler, const irq_code_t *irq_code,
    4746    cap_irq_handle_t *handle)
    4847{
    49         (void)dev;
    5048        return async_irq_subscribe(irq, (async_notification_handler_t) handler,
    51             arg, irq_code, handle);
     49            dev, irq_code, handle);
    5250}
    5351
Note: See TracChangeset for help on using the changeset viewer.