diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-05-06 11:09:01 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-05-06 11:09:01 -0300 |
commit | d2e4d325373507cb36a3c4993cd675331edad4cd (patch) | |
tree | 1a4ccec15da64ee9fa787f15d114b7f5075b4597 /linux/drivers/media/video/cx18/Kconfig | |
parent | 8cbe2cc9d86026b55c029cbe64920bbeb3fa49ce (diff) | |
download | mediapointer-dvb-s2-d2e4d325373507cb36a3c4993cd675331edad4cd.tar.gz mediapointer-dvb-s2-d2e4d325373507cb36a3c4993cd675331edad4cd.tar.bz2 |
Fix FW_LOADER depencency at v4l/dvb
From: Mauro Carvalho Chehab <mchehab@infradead.org>
Since:
1) FW_LOADER is defined as:
config FW_LOADER
tristate "Userspace firmware loading support"
depends on HOTPLUG
2) several V4L/DVB driver just selects it;
3) select is not smart enough to auto-select HOTPLUG, if select FW_LOADER.
So, All drivers that select FW_LOADER should also depend on HOTPLUG.
An easier solution (for the end-user perspective) would be to "select HOTPLUG".
However, live is not simple. This would cause recursive dependency issues like
this one:
drivers/usb/Kconfig:62:error: found recursive dependency: USB -> USB_OHCI_HCD
-> I2C -> MEDIA_TUNER -> MEDIA_TUNER_XC2028 -> HOTPLUG -> PCCARD -> PCMCIA ->
USB_ARCH_HAS_HCD -> MOUSE_APPLETOUCH -> USB
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/video/cx18/Kconfig')
-rw-r--r-- | linux/drivers/media/video/cx18/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/linux/drivers/media/video/cx18/Kconfig b/linux/drivers/media/video/cx18/Kconfig index be654a27b..35a55998a 100644 --- a/linux/drivers/media/video/cx18/Kconfig +++ b/linux/drivers/media/video/cx18/Kconfig @@ -1,6 +1,8 @@ config VIDEO_CX18 tristate "Conexant cx23418 MPEG encoder support" depends on VIDEO_V4L2 && DVB_CORE && PCI && I2C && EXPERIMENTAL + depends on INPUT # due to VIDEO_IR + depends on HOTPLUG # due to FW_LOADER select I2C_ALGOBIT select FW_LOADER select VIDEO_IR |