mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 13:03:25 +01:00
f97fa3dcb2
Some existing and new users may benefit from the intlog2() and intlog10() APIs, make them wide available. Reviewed-by: Mauro Carvalho Chehab <mchehab@kernel.org> Acked-by: Mauro Carvalho Chehab <mchehab@kernel.org> Link: https://lore.kernel.org/r/20230619172019.21457-2-andriy.shevchenko@linux.intel.com Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Reviewed-by: Randy Dunlap <rdunlap@infradead.org> Link: https://lore.kernel.org/r/20230703135211.87416-2-andriy.shevchenko@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
9 lines
332 B
Makefile
9 lines
332 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
obj-y += div64.o gcd.o lcm.o int_log.o int_pow.o int_sqrt.o reciprocal_div.o
|
|
|
|
obj-$(CONFIG_CORDIC) += cordic.o
|
|
obj-$(CONFIG_PRIME_NUMBERS) += prime_numbers.o
|
|
obj-$(CONFIG_RATIONAL) += rational.o
|
|
|
|
obj-$(CONFIG_TEST_DIV64) += test_div64.o
|
|
obj-$(CONFIG_RATIONAL_KUNIT_TEST) += rational-test.o
|