aboutsummaryrefslogtreecommitdiffstats
path: root/rust/kernel/lib.rs
diff options
context:
space:
mode:
authorDaniel Almeida <daniel.almeida@collabora.com>2025-08-11 13:03:39 -0300
committerDanilo Krummrich <dakr@kernel.org>2025-08-12 19:39:45 +0200
commit1f54d5e5cd2a03cb6dd8326db576f8763f9b6785 (patch)
treeb459edf7058c7bf081d801b277d92b19801cba55 /rust/kernel/lib.rs
parentLinux 6.17-rc1 (diff)
downloadlinux-1f54d5e5cd2a03cb6dd8326db576f8763f9b6785.tar.gz
linux-1f54d5e5cd2a03cb6dd8326db576f8763f9b6785.zip
rust: irq: add irq module
Add the IRQ module. Future patches will then introduce support for IRQ registrations and handlers. Reviewed-by: Alice Ryhl <aliceryhl@google.com> Tested-by: Joel Fernandes <joelagnelf@nvidia.com> Tested-by: Dirk Behme <dirk.behme@de.bosch.com> Signed-off-by: Daniel Almeida <daniel.almeida@collabora.com> Link: https://lore.kernel.org/r/20250811-topics-tyr-request_irq2-v9-1-0485dcd9bcbf@collabora.com Signed-off-by: Danilo Krummrich <dakr@kernel.org>
Diffstat (limited to '')
-rw-r--r--rust/kernel/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/rust/kernel/lib.rs b/rust/kernel/lib.rs
index ed53169e795c..f8db761c5c95 100644
--- a/rust/kernel/lib.rs
+++ b/rust/kernel/lib.rs
@@ -92,6 +92,7 @@ pub mod fs;
pub mod init;
pub mod io;
pub mod ioctl;
+pub mod irq;
pub mod jump_label;
#[cfg(CONFIG_KUNIT)]
pub mod kunit;