diff options
| author | Davidlohr Bueso <[email protected]> | 2013-04-30 15:28:25 -0700 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2013-04-30 17:04:07 -0700 |
| commit | c75aaa8ed03eb1312ed2990f1a716b2b9cc0df42 (patch) | |
| tree | 7646064b514d7e799ef59abe3f4f445bf2cbd029 | |
| parent | 4130f0efbfe5adb360328b777afa8e45f7e467f7 (diff) | |
rbtree_test: add __init/__exit annotations
Signed-off-by: Davidlohr Bueso <[email protected]>
Reviewed-by: Michel Lespinasse <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
| -rw-r--r-- | lib/rbtree_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rbtree_test.c b/lib/rbtree_test.c index 99515038ff6d..122f02f9941b 100644 --- a/lib/rbtree_test.c +++ b/lib/rbtree_test.c @@ -149,7 +149,7 @@ static void check_augmented(int nr_nodes) } } -static int rbtree_test_init(void) +static int __init rbtree_test_init(void) { int i, j; cycles_t time1, time2, time; @@ -222,7 +222,7 @@ static int rbtree_test_init(void) return -EAGAIN; /* Fail will directly unload the module */ } -static void rbtree_test_exit(void) +static void __exit rbtree_test_exit(void) { printk(KERN_ALERT "test exit\n"); } |