diff options
author | Arnd Bergmann <arnd@arndb.de> | 2021-01-04 00:36:22 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-01-23 17:38:17 +0300 |
commit | 8ab752ebebe768c36284b83073ef7ef8008c6b48 (patch) | |
tree | 0adbae52287e61172ecc9906778012a4d3fdb4a8 /drivers/isdn/mISDN/Kconfig | |
parent | 83917f647c055eb52fae86bff13cff5f298624f8 (diff) | |
download | linux-8ab752ebebe768c36284b83073ef7ef8008c6b48.tar.xz |
misdn: dsp: select CONFIG_BITREVERSE
[ Upstream commit 51049bd903a81307f751babe15a1df8d197884e8 ]
Without this, we run into a link error
arm-linux-gnueabi-ld: drivers/isdn/mISDN/dsp_audio.o: in function `dsp_audio_generate_law_tables':
(.text+0x30c): undefined reference to `byte_rev_table'
arm-linux-gnueabi-ld: drivers/isdn/mISDN/dsp_audio.o:(.text+0x5e4): more undefined references to `byte_rev_table' follow
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers/isdn/mISDN/Kconfig')
-rw-r--r-- | drivers/isdn/mISDN/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/isdn/mISDN/Kconfig b/drivers/isdn/mISDN/Kconfig index c0730d5c734d..fb61181a5c4f 100644 --- a/drivers/isdn/mISDN/Kconfig +++ b/drivers/isdn/mISDN/Kconfig @@ -12,6 +12,7 @@ if MISDN != n config MISDN_DSP tristate "Digital Audio Processing of transparent data" depends on MISDN + select BITREVERSE help Enable support for digital audio processing capability. |