Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/rust/helpers/irq.c
29266 views
1
// SPDX-License-Identifier: GPL-2.0
2
3
#include <linux/interrupt.h>
4
5
int rust_helper_request_irq(unsigned int irq, irq_handler_t handler,
6
unsigned long flags, const char *name, void *dev)
7
{
8
return request_irq(irq, handler, flags, name, dev);
9
}
10
11