[media] timberdale: do not select TIMB_DMA
authorArnd Bergmann <arnd@arndb.de>
Wed, 28 Jan 2015 21:17:41 +0000 (18:17 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Mon, 2 Feb 2015 13:00:35 +0000 (11:00 -0200)
The timberdale media driver requires the use of the respective
dma engine driver, but that may not be enabled, causing a
Kconfig warning:

warning: (VIDEO_TIMBERDALE) selects TIMB_DMA which has unmet direct dependencies (DMADEVICES && MFD_TIMBERDALE)

This fixes the dependency by removing the inappropriate 'select'
statement and replacing it with a direct dependency on the
drivers that provide the services this needs.

Fixes: 7155043c2d027 ("[media] enable COMPILE_TEST for media drivers")

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/platform/Kconfig

index 250b7af660271e6d2746cd41678a2a12f531b7c8..663f7580a5da7c42e7a4180b30b66aed63d9b8c8 100644 (file)
@@ -56,10 +56,8 @@ config VIDEO_VIU
 
 config VIDEO_TIMBERDALE
        tristate "Support for timberdale Video In/LogiWIN"
-       depends on VIDEO_V4L2 && I2C && DMADEVICES
-       depends on MFD_TIMBERDALE || COMPILE_TEST
-       select DMA_ENGINE
-       select TIMB_DMA
+       depends on VIDEO_V4L2 && I2C
+       depends on (MFD_TIMBERDALE && TIMB_DMA) || COMPILE_TEST
        select VIDEO_ADV7180
        select VIDEOBUF_DMA_CONTIG
        ---help---