diff options
author | Masami Hiramatsu <mhiramat@kernel.org> | 2020-05-28 23:52:06 +0900 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2020-06-02 10:25:20 -0600 |
commit | d0676871fd52f575cc2bfec4faa2fcbc8af370e8 (patch) | |
tree | 096b60bcd319322482ed2581a835ccaa1371f857 /lib/math | |
parent | 619ee76f5c9f6a1d601d1a056a454d62bf676ae4 (diff) | |
download | linux-d0676871fd52f575cc2bfec4faa2fcbc8af370e8.tar.bz2 |
lib: Make prime number generator independently selectable
Make prime number generator independently selectable from
kconfig. This allows us to enable CONFIG_PRIME_NUMBERS=m
and run the tools/testing/selftests/lib/prime_numbers.sh
without other DRM selftest modules.
Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
Reviewed-by: Kees Cook <keescook@chromium.org>
Reviewed-by: Luis Chamberlain <mcgrof@kernel.org>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'lib/math')
-rw-r--r-- | lib/math/Kconfig | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/math/Kconfig b/lib/math/Kconfig index 15bd50d92308..f19bc9734fa7 100644 --- a/lib/math/Kconfig +++ b/lib/math/Kconfig @@ -6,7 +6,12 @@ config CORDIC calculations are in fixed point. Module will be called cordic. config PRIME_NUMBERS - tristate + tristate "Simple prime number generator for testing" + help + This option provides a simple prime number generator for test + modules. + + If unsure, say N. config RATIONAL bool |