diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2014-11-23 15:23:49 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-11-27 04:30:05 +0100 |
commit | 27361ff56d88d6cae16bd032aa94898c45b7ec4c (patch) | |
tree | 4011a3bd3cb88b8b7a0697aacf9e0aeefca9ad81 /drivers/misc/carma/Kconfig | |
parent | carma-fpga-program.c: fix compile errors (diff) | |
download | linux-27361ff56d88d6cae16bd032aa94898c45b7ec4c.tar.xz linux-27361ff56d88d6cae16bd032aa94898c45b7ec4c.zip |
carma-fpga: drop videobuf dependency
This driver abuses videobuf helper functions. This is a bad idea
because:
1) this driver is completely unrelated to media drivers
2) the videobuf API is deprecated and will be removed eventually
This patch replaces the videobuf functions with the normal DMA kernel
API.
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc/carma/Kconfig')
-rw-r--r-- | drivers/misc/carma/Kconfig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/misc/carma/Kconfig b/drivers/misc/carma/Kconfig index c90370ed712b..c6047fb879dd 100644 --- a/drivers/misc/carma/Kconfig +++ b/drivers/misc/carma/Kconfig @@ -1,7 +1,6 @@ config CARMA_FPGA tristate "CARMA DATA-FPGA Access Driver" - depends on FSL_SOC && PPC_83xx && MEDIA_SUPPORT && HAS_DMA && FSL_DMA - select VIDEOBUF_DMA_SG + depends on FSL_SOC && PPC_83xx && HAS_DMA && FSL_DMA default n help Say Y here to include support for communicating with the data |