summaryrefslogtreecommitdiff
path: root/rust/helpers/irq.c
blob: a61fad33386621e8830319b92ee24b92fe7576f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: GPL-2.0

#include <linux/interrupt.h>

__rust_helper 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);
}