irq.c 278 B

1234567891011
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <linux/interrupt.h>
  3. __rust_helper int rust_helper_request_irq(unsigned int irq,
  4. irq_handler_t handler,
  5. unsigned long flags, const char *name,
  6. void *dev)
  7. {
  8. return request_irq(irq, handler, flags, name, dev);
  9. }