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