Linux-6.18.2/rust/helpers/irq.c

10 lines
250 B
C
Raw Normal View History

2025-12-23 20:05:50 +08:00
// 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);
}