[PATCH] ARM: kprobes: add missing MODULE_DESCRIPTION() to test module

From: Ethan Nelson-Moore

Date: Sun May 17 2026 - 21:31:50 EST


The test-kprobes module does not have a description, which causes the
following warning:

WARNING: modpost: missing MODULE_DESCRIPTION() in
arch/arm/probes/kprobes/test-kprobes.o

Resolve this issue by adding the missing description.

Signed-off-by: Ethan Nelson-Moore <enelsonmoore@xxxxxxxxx>
---
arch/arm/probes/kprobes/test-core.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/arch/arm/probes/kprobes/test-core.c b/arch/arm/probes/kprobes/test-core.c
index 7a2baa135f0f..8da2be47b13b 100644
--- a/arch/arm/probes/kprobes/test-core.c
+++ b/arch/arm/probes/kprobes/test-core.c
@@ -1663,6 +1663,7 @@ static void __exit kprobe_test_exit(void)

module_init(run_all_tests)
module_exit(kprobe_test_exit)
+MODULE_DESCRIPTION("Tests for the kprobes API and instruction set simulation");
MODULE_LICENSE("GPL");

#else /* !MODULE */
--
2.43.0