diff options
Diffstat (limited to 'lib/test_sort.c')
-rw-r--r-- | lib/test_sort.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/test_sort.c b/lib/test_sort.c index d389c1cc2f6c..4db3911db50a 100644 --- a/lib/test_sort.c +++ b/lib/test_sort.c | |||
@@ -1,8 +1,11 @@ | |||
1 | #include <linux/sort.h> | 1 | #include <linux/sort.h> |
2 | #include <linux/slab.h> | 2 | #include <linux/slab.h> |
3 | #include <linux/module.h> | 3 | #include <linux/init.h> |
4 | 4 | ||
5 | /* a simple boot-time regression test */ | 5 | /* |
6 | * A simple boot-time regression test | ||
7 | * License: GPL | ||
8 | */ | ||
6 | 9 | ||
7 | #define TEST_LEN 1000 | 10 | #define TEST_LEN 1000 |
8 | 11 | ||
@@ -38,6 +41,4 @@ exit: | |||
38 | kfree(a); | 41 | kfree(a); |
39 | return err; | 42 | return err; |
40 | } | 43 | } |
41 | 44 | subsys_initcall(test_sort_init); | |
42 | module_init(test_sort_init); | ||
43 | MODULE_LICENSE("GPL"); | ||