Changes in uspace/lib/drv/generic/interrupt.c [60744cb:4122410] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/generic/interrupt.c
r60744cb r4122410 1 1 /* 2 * Copyright (c) 2024 Jiri Svoboda3 2 * Copyright (c) 2010 Lenka Trochtova 4 3 * All rights reserved. … … 44 43 45 44 errno_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, 47 46 cap_irq_handle_t *handle) 48 47 { 49 (void)dev;50 48 return async_irq_subscribe(irq, (async_notification_handler_t) handler, 51 arg, irq_code, handle);49 dev, irq_code, handle); 52 50 } 53 51
Note:
See TracChangeset
for help on using the changeset viewer.