diff options
| author | Andy Shevchenko <[email protected]> | 2023-07-03 16:52:08 +0300 |
|---|---|---|
| committer | Mark Brown <[email protected]> | 2023-07-09 22:47:48 +0100 |
| commit | f97fa3dcb2db02013e6904c032a1d2d45707ee40 (patch) | |
| tree | 47a694f5adb37f86e309ce7eeaf9590157f80cd9 /lib/math/Makefile | |
| parent | 3d74f42c56db263e82ad96f8fe23aef38cdc071f (diff) | |
lib/math: Move dvb_math.c into lib/math/int_log.c
Some existing and new users may benefit from the intlog2() and
intlog10() APIs, make them wide available.
Reviewed-by: Mauro Carvalho Chehab <[email protected]>
Acked-by: Mauro Carvalho Chehab <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Andy Shevchenko <[email protected]>
Reviewed-by: Randy Dunlap <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
Diffstat (limited to 'lib/math/Makefile')
| -rw-r--r-- | lib/math/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/math/Makefile b/lib/math/Makefile index bfac26ddfc22..91fcdb0c9efe 100644 --- a/lib/math/Makefile +++ b/lib/math/Makefile @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-2.0-only -obj-y += div64.o gcd.o lcm.o int_pow.o int_sqrt.o reciprocal_div.o +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 |