Skip to content

Commit 44503b9

Browse files
martin-kaiserakpm00
authored andcommitted
lib/test_vmalloc.c: fix typo in function name
Fix a typo and change the function name to init_test_configuration. Both caller and definition have the same typo, so the current code already works. Link: https://lkml.kernel.org/r/[email protected] Signed-off-by: Martin Kaiser <[email protected]> Reviewed-by: Uladzislau Rezki (Sony) <[email protected]> Signed-off-by: Andrew Morton <[email protected]>
1 parent 5ce1f48 commit 44503b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/test_vmalloc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ static int test_func(void *private)
501501
}
502502

503503
static int
504-
init_test_configurtion(void)
504+
init_test_configuration(void)
505505
{
506506
/*
507507
* A maximum number of workers is defined as hard-coded
@@ -531,7 +531,7 @@ static void do_concurrent_test(void)
531531
/*
532532
* Set some basic configurations plus sanity check.
533533
*/
534-
ret = init_test_configurtion();
534+
ret = init_test_configuration();
535535
if (ret < 0)
536536
return;
537537

0 commit comments

Comments
 (0)