Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[media] R820T tuner needs CONFIG_BITREVERSE

In a rarely hit randconfig case, the r820t tuner driver can
get built when CONFIG_BITREVERSE is not selected by any
other driver, resulting in this error:

drivers/built-in.o: In function `r820t_read.constprop.3':
:(.text+0xa0594): undefined reference to `byte_rev_table'

For consistency, this adds the 'select BITREVERSE' that
all other similar drivers have.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>

authored by

Arnd Bergmann and committed by
Mauro Carvalho Chehab
0fd355c8 2aae557e

+1
+1
drivers/media/tuners/Kconfig
··· 258 258 tristate "Rafael Micro R820T silicon tuner" 259 259 depends on MEDIA_SUPPORT && I2C 260 260 default m if !MEDIA_SUBDRV_AUTOSELECT 261 + select BITREVERSE 261 262 help 262 263 Rafael Micro R820T silicon tuner driver. 263 264