Changeset 646849b3 in mainline for uspace/lib/drv/generic/interrupt.c
- Timestamp:
- 2024-05-17T12:25:26Z (7 months ago)
- Branches:
- master
- Children:
- 60744cb
- Parents:
- 59c0f478
- git-author:
- Jiri Svoboda <jiri@…> (2024-05-16 19:25:07)
- git-committer:
- Jiri Svoboda <jiri@…> (2024-05-17 12:25:26)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/generic/interrupt.c
r59c0f478 r646849b3 1 1 /* 2 * Copyright (c) 2024 Jiri Svoboda 2 3 * Copyright (c) 2010 Lenka Trochtova 3 4 * All rights reserved. … … 50 51 } 51 52 53 errno_t register_interrupt_handler_arg(ddf_dev_t *dev, int irq, 54 interrupt_handler_t *handler, void *arg, const irq_code_t *irq_code, 55 cap_irq_handle_t *handle) 56 { 57 (void)dev; 58 return async_irq_subscribe(irq, (async_notification_handler_t) handler, 59 arg, irq_code, handle); 60 } 61 52 62 errno_t unregister_interrupt_handler(ddf_dev_t *dev, cap_irq_handle_t handle) 53 63 {
Note:
See TracChangeset
for help on using the changeset viewer.