Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c75aaa8e authored by Davidlohr Bueso's avatar Davidlohr Bueso Committed by Linus Torvalds
Browse files

rbtree_test: add __init/__exit annotations

parent 4130f0ef
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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");
}