3c4b422adb
X-Patchwork-Delegate: mchehab@redhat.com Remove the CONFIG_ prefix from two Kconfig symbols in a dependency for SMS_SIANO_DEBUGFS. This prefix is invalid inside Kconfig files. Note that the current (common sense) dependency on SMS_USB_DRV and SMS_SDIO_DRV being equal ensures that SMS_SIANO_DEBUGFS will not violate its constraints. These constraint are that: - it should only be built if SMS_USB_DRV is set; - it can't be builtin if USB support is modular. So drop the dependency on SMS_USB_DRV, as it is unneeded. Fixes: 6c84b214284e ("[media] sms: fix randconfig building error") Reported-by: Martin Walch <walch.martin@web.de> Signed-off-by: Paul Bolle <pebolle@tiscali.nl> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
33 lines
846 B
Plaintext
33 lines
846 B
Plaintext
#
|
|
# Siano Mobile Silicon Digital TV device configuration
|
|
#
|
|
|
|
config SMS_SIANO_MDTV
|
|
tristate
|
|
depends on DVB_CORE && HAS_DMA
|
|
depends on !RC_CORE || RC_CORE
|
|
depends on SMS_USB_DRV || SMS_SDIO_DRV
|
|
default y
|
|
|
|
config SMS_SIANO_RC
|
|
bool "Enable Remote Controller support for Siano devices"
|
|
depends on SMS_SIANO_MDTV && RC_CORE
|
|
depends on SMS_USB_DRV || SMS_SDIO_DRV
|
|
depends on MEDIA_COMMON_OPTIONS
|
|
default y
|
|
---help---
|
|
Choose Y to select Remote Controller support for Siano driver.
|
|
|
|
config SMS_SIANO_DEBUGFS
|
|
bool "Enable debugfs for smsdvb"
|
|
depends on SMS_SIANO_MDTV
|
|
depends on DEBUG_FS
|
|
depends on SMS_USB_DRV = SMS_SDIO_DRV
|
|
|
|
---help---
|
|
Choose Y to enable visualizing a dump of the frontend
|
|
statistics response packets via debugfs. Currently, works
|
|
only with Siano USB devices.
|
|
|
|
Useful only for developers. In doubt, say N.
|