diff options
| author | Martin Kaiser <[email protected]> | 2024-02-26 19:11:57 +0000 |
|---|---|---|
| committer | Andrew Morton <[email protected]> | 2024-03-05 01:01:21 +0000 |
| commit | 44503b97ad9784943afb39d62fce3936580bec6f (patch) | |
| tree | 78de10c3a752b04a1294c55f77ebd2f11ee25a71 /lib/test_vmalloc.c | |
| parent | mm: remove total_mapcount() (diff) | |
| download | kernel-44503b97ad9784943afb39d62fce3936580bec6f.tar.gz kernel-44503b97ad9784943afb39d62fce3936580bec6f.zip | |
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]>
Diffstat (limited to 'lib/test_vmalloc.c')
| -rw-r--r-- | lib/test_vmalloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/test_vmalloc.c b/lib/test_vmalloc.c index 3718d9886407..191b6bd5dff9 100644 --- a/lib/test_vmalloc.c +++ b/lib/test_vmalloc.c @@ -501,7 +501,7 @@ static int test_func(void *private) } static int -init_test_configurtion(void) +init_test_configuration(void) { /* * A maximum number of workers is defined as hard-coded @@ -531,7 +531,7 @@ static void do_concurrent_test(void) /* * Set some basic configurations plus sanity check. */ - ret = init_test_configurtion(); + ret = init_test_configuration(); if (ret < 0) return; |
