Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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