mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 06:44:00 -04:00
Patch series "lib: polynomial: Move to math/ and clean up", v2. While removing Baikal SoC and platform code pieces I found that this code belongs to lib/math/ rather than generic lib/. Hence the move and followed up cleanups. This patch (of 3): The algorithm behind polynomial belongs to our collection of math equations and expressions handling. Move it to math/ subfolder where others of the kind are located. Link: https://lkml.kernel.org/r/20260302092831.2267785-2-andriy.shevchenko@linux.intel.com Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Reviewed-by: Kuan-Wei Chiu <visitorckw@gmail.com> Cc: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
21 lines
465 B
Plaintext
21 lines
465 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
config CORDIC
|
|
tristate "CORDIC algorithm"
|
|
help
|
|
This option provides an implementation of the CORDIC algorithm;
|
|
calculations are in fixed point. Module will be called cordic.
|
|
|
|
config POLYNOMIAL
|
|
tristate
|
|
|
|
config PRIME_NUMBERS
|
|
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
|
|
tristate
|