diff options
| author | Mark Brown <broonie@kernel.org> | 2026-07-27 13:39:14 +0100 |
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2026-07-27 13:39:14 +0100 |
| commit | 2ce60684348fe1c1b0de8fbaabeb7f8c30fe2f90 (patch) | |
| tree | 810d5a37a80ee5cd1f1661cd5847dda42e850be3 | |
| parent | 3d1ede742588a592a1b7476a32b9fef2ec7da129 (diff) | |
| parent | 75ca78c7d982a0b7c658722fa9eb2ce70e180307 (diff) | |
| download | linux-next-2ce60684348fe1c1b0de8fbaabeb7f8c30fe2f90.tar.gz linux-next-2ce60684348fe1c1b0de8fbaabeb7f8c30fe2f90.zip | |
Merge branch 'for-next' of https://git.kernel.org/pub/scm/linux/kernel/git/rmk/linux.git
| -rw-r--r-- | arch/arm/probes/kprobes/test-core.c | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/arch/arm/probes/kprobes/test-core.c b/arch/arm/probes/kprobes/test-core.c index 7a2baa135f0f..2de28088dac8 100644 --- a/arch/arm/probes/kprobes/test-core.c +++ b/arch/arm/probes/kprobes/test-core.c @@ -1649,24 +1649,16 @@ out: return ret; } - +late_initcall(run_all_tests); /* * Module setup */ -#ifdef MODULE - static void __exit kprobe_test_exit(void) { } - -module_init(run_all_tests) module_exit(kprobe_test_exit) -MODULE_LICENSE("GPL"); -#else /* !MODULE */ - -late_initcall(run_all_tests); - -#endif +MODULE_DESCRIPTION("Test code for ARM kprobes"); +MODULE_LICENSE("GPL"); |
