From: Oliver Glitta glittao@gmail.com
Remove unused function test_exit(), from SLUB KUnit test.
Reported-by: Marco Elver elver@google.com Signed-off-by: Oliver Glitta glittao@gmail.com --- lib/slub_kunit.c | 3 --- 1 file changed, 3 deletions(-)
diff --git a/lib/slub_kunit.c b/lib/slub_kunit.c index f28965f64ef6..8662dc6cb509 100644 --- a/lib/slub_kunit.c +++ b/lib/slub_kunit.c @@ -129,8 +129,6 @@ static int test_init(struct kunit *test) return 0; }
-static void test_exit(struct kunit *test) {} - static struct kunit_case test_cases[] = { KUNIT_CASE(test_clobber_zone),
@@ -147,7 +145,6 @@ static struct kunit_case test_cases[] = { static struct kunit_suite test_suite = { .name = "slub_test", .init = test_init, - .exit = test_exit, .test_cases = test_cases, }; kunit_test_suite(test_suite);