mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
media: rc-core: do not depend on MEDIA_SUPPORT
There is no dependency between the two, so remove the dependency in Kconfig files. Signed-off-by: Sean Young <sean@mess.org> Acked-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
f394ca212d
commit
b9e1486e0e
6 changed files with 22 additions and 22 deletions
|
@ -226,7 +226,7 @@ CONFIG_REGULATOR_MC13892=y
|
||||||
CONFIG_REGULATOR_PFUZE100=y
|
CONFIG_REGULATOR_PFUZE100=y
|
||||||
CONFIG_MEDIA_SUPPORT=y
|
CONFIG_MEDIA_SUPPORT=y
|
||||||
CONFIG_MEDIA_CAMERA_SUPPORT=y
|
CONFIG_MEDIA_CAMERA_SUPPORT=y
|
||||||
CONFIG_MEDIA_RC_SUPPORT=y
|
CONFIG_RC_CORE=y
|
||||||
CONFIG_RC_DEVICES=y
|
CONFIG_RC_DEVICES=y
|
||||||
CONFIG_IR_GPIO_CIR=y
|
CONFIG_IR_GPIO_CIR=y
|
||||||
CONFIG_MEDIA_USB_SUPPORT=y
|
CONFIG_MEDIA_USB_SUPPORT=y
|
||||||
|
|
|
@ -304,7 +304,7 @@ CONFIG_REGULATOR_TPS65910=y
|
||||||
CONFIG_REGULATOR_TWL4030=y
|
CONFIG_REGULATOR_TWL4030=y
|
||||||
CONFIG_MEDIA_SUPPORT=m
|
CONFIG_MEDIA_SUPPORT=m
|
||||||
CONFIG_MEDIA_CAMERA_SUPPORT=y
|
CONFIG_MEDIA_CAMERA_SUPPORT=y
|
||||||
CONFIG_MEDIA_RC_SUPPORT=y
|
CONFIG_RC_CORE=m
|
||||||
CONFIG_MEDIA_CONTROLLER=y
|
CONFIG_MEDIA_CONTROLLER=y
|
||||||
CONFIG_VIDEO_V4L2_SUBDEV_API=y
|
CONFIG_VIDEO_V4L2_SUBDEV_API=y
|
||||||
CONFIG_LIRC=m
|
CONFIG_LIRC=m
|
||||||
|
|
|
@ -95,7 +95,7 @@ CONFIG_REGULATOR_FIXED_VOLTAGE=y
|
||||||
CONFIG_REGULATOR_AXP20X=y
|
CONFIG_REGULATOR_AXP20X=y
|
||||||
CONFIG_REGULATOR_GPIO=y
|
CONFIG_REGULATOR_GPIO=y
|
||||||
CONFIG_MEDIA_SUPPORT=y
|
CONFIG_MEDIA_SUPPORT=y
|
||||||
CONFIG_MEDIA_RC_SUPPORT=y
|
CONFIG_RC_CORE=y
|
||||||
CONFIG_RC_DEVICES=y
|
CONFIG_RC_DEVICES=y
|
||||||
CONFIG_IR_SUNXI=y
|
CONFIG_IR_SUNXI=y
|
||||||
CONFIG_DRM=y
|
CONFIG_DRM=y
|
||||||
|
|
|
@ -207,7 +207,7 @@ CONFIG_IMGPDC_WDT=y
|
||||||
CONFIG_REGULATOR_FIXED_VOLTAGE=y
|
CONFIG_REGULATOR_FIXED_VOLTAGE=y
|
||||||
CONFIG_REGULATOR_GPIO=y
|
CONFIG_REGULATOR_GPIO=y
|
||||||
CONFIG_MEDIA_SUPPORT=y
|
CONFIG_MEDIA_SUPPORT=y
|
||||||
CONFIG_MEDIA_RC_SUPPORT=y
|
CONFIG_RC_CORE=y
|
||||||
# CONFIG_RC_DECODERS is not set
|
# CONFIG_RC_DECODERS is not set
|
||||||
CONFIG_RC_DEVICES=y
|
CONFIG_RC_DEVICES=y
|
||||||
CONFIG_IR_IMG=y
|
CONFIG_IR_IMG=y
|
||||||
|
|
|
@ -11,6 +11,8 @@ config CEC_NOTIFIER
|
||||||
config CEC_PIN
|
config CEC_PIN
|
||||||
bool
|
bool
|
||||||
|
|
||||||
|
source "drivers/media/rc/Kconfig"
|
||||||
|
|
||||||
menuconfig MEDIA_SUPPORT
|
menuconfig MEDIA_SUPPORT
|
||||||
tristate "Multimedia support"
|
tristate "Multimedia support"
|
||||||
depends on HAS_IOMEM
|
depends on HAS_IOMEM
|
||||||
|
@ -75,20 +77,6 @@ config MEDIA_SDR_SUPPORT
|
||||||
|
|
||||||
Say Y when you have a software defined radio device.
|
Say Y when you have a software defined radio device.
|
||||||
|
|
||||||
config MEDIA_RC_SUPPORT
|
|
||||||
bool "Remote Controller support"
|
|
||||||
depends on INPUT
|
|
||||||
---help---
|
|
||||||
Enable support for Remote Controllers on Linux. This is
|
|
||||||
needed in order to support several video capture adapters,
|
|
||||||
standalone IR receivers/transmitters, and RF receivers.
|
|
||||||
|
|
||||||
Enable this option if you have a video capture board even
|
|
||||||
if you don't need IR, as otherwise, you may not be able to
|
|
||||||
compile the driver for your adapter.
|
|
||||||
|
|
||||||
Say Y when you have a TV or an IR device.
|
|
||||||
|
|
||||||
config MEDIA_CEC_SUPPORT
|
config MEDIA_CEC_SUPPORT
|
||||||
bool "HDMI CEC support"
|
bool "HDMI CEC support"
|
||||||
---help---
|
---help---
|
||||||
|
@ -178,7 +166,6 @@ config TTPCI_EEPROM
|
||||||
source "drivers/media/dvb-core/Kconfig"
|
source "drivers/media/dvb-core/Kconfig"
|
||||||
|
|
||||||
comment "Media drivers"
|
comment "Media drivers"
|
||||||
source "drivers/media/rc/Kconfig"
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# V4L platform/mem2mem drivers
|
# V4L platform/mem2mem drivers
|
||||||
|
|
|
@ -1,9 +1,20 @@
|
||||||
config RC_CORE
|
|
||||||
tristate
|
menuconfig RC_CORE
|
||||||
depends on MEDIA_RC_SUPPORT
|
tristate "Remote Controller support"
|
||||||
depends on INPUT
|
depends on INPUT
|
||||||
default y
|
default y
|
||||||
|
---help---
|
||||||
|
Enable support for Remote Controllers on Linux. This is
|
||||||
|
needed in order to support several video capture adapters,
|
||||||
|
standalone IR receivers/transmitters, and RF receivers.
|
||||||
|
|
||||||
|
Enable this option if you have a video capture board even
|
||||||
|
if you don't need IR, as otherwise, you may not be able to
|
||||||
|
compile the driver for your adapter.
|
||||||
|
|
||||||
|
Say Y when you have a TV or an IR device.
|
||||||
|
|
||||||
|
if RC_CORE
|
||||||
source "drivers/media/rc/keymaps/Kconfig"
|
source "drivers/media/rc/keymaps/Kconfig"
|
||||||
|
|
||||||
menuconfig RC_DECODERS
|
menuconfig RC_DECODERS
|
||||||
|
@ -436,3 +447,5 @@ config IR_SIR
|
||||||
be called sir-ir.
|
be called sir-ir.
|
||||||
|
|
||||||
endif #RC_DEVICES
|
endif #RC_DEVICES
|
||||||
|
|
||||||
|
endif #RC_CORE
|
||||||
|
|
Loading…
Add table
Reference in a new issue