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